1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
4 * giochannel.c: IO Channel abstraction
5 * Copyright 1998 Owen Taylor
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the
19 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 * Boston, MA 02111-1307, USA.
24 * Modified by the GLib Team and others 1997-2000. See the AUTHORS
25 * file for a list of people on the GLib Team. See the ChangeLog
26 * files for a list of changes. These files are distributed with
27 * GLib at ftp://ftp.gtk.org/pub/gtk/.
43 #undef G_DISABLE_DEPRECATED
45 #include "giochannel.h"
47 #include "gstrfuncs.h"
48 #include "gtestutils.h"
55 * @short_description: portable support for using files, pipes and
57 * @see_also: <para> <variablelist> <varlistentry>
58 * <term>g_io_add_watch(), g_io_add_watch_full(),
59 * g_source_remove()</term> <listitem><para> Convenience
60 * functions for creating #GIOChannel instances and adding
61 * them to the <link linkend="glib-The-Main-Event-Loop">main
62 * event loop</link>. </para></listitem> </varlistentry>
63 * </variablelist> </para>
65 * The #GIOChannel data type aims to provide a portable method for
66 * using file descriptors, pipes, and sockets, and integrating them
67 * into the <link linkend="glib-The-Main-Event-Loop">main event
68 * loop</link>. Currently full support is available on UNIX platforms,
69 * support for Windows is only partially complete.
71 * To create a new #GIOChannel on UNIX systems use
72 * g_io_channel_unix_new(). This works for plain file descriptors,
73 * pipes and sockets. Alternatively, a channel can be created for a
74 * file in a system independent manner using g_io_channel_new_file().
76 * Once a #GIOChannel has been created, it can be used in a generic
77 * manner with the functions g_io_channel_read_chars(),
78 * g_io_channel_write_chars(), g_io_channel_seek_position(), and
79 * g_io_channel_shutdown().
81 * To add a #GIOChannel to the <link
82 * linkend="glib-The-Main-Event-Loop">main event loop</link> use
83 * g_io_add_watch() or g_io_add_watch_full(). Here you specify which
84 * events you are interested in on the #GIOChannel, and provide a
85 * function to be called whenever these events occur.
87 * #GIOChannel instances are created with an initial reference count of
88 * 1. g_io_channel_ref() and g_io_channel_unref() can be used to
89 * increment or decrement the reference count respectively. When the
90 * reference count falls to 0, the #GIOChannel is freed. (Though it
91 * isn't closed automatically, unless it was created using
92 * g_io_channel_new_from_file().) Using g_io_add_watch() or
93 * g_io_add_watch_full() increments a channel's reference count.
95 * The new functions g_io_channel_read_chars(),
96 * g_io_channel_read_line(), g_io_channel_read_line_string(),
97 * g_io_channel_read_to_end(), g_io_channel_write_chars(),
98 * g_io_channel_seek_position(), and g_io_channel_flush() should not be
99 * mixed with the deprecated functions g_io_channel_read(),
100 * g_io_channel_write(), and g_io_channel_seek() on the same channel.
106 * A data structure representing an IO Channel. The fields should be
107 * considered private and should only be accessed with the following
113 * @io_read: reads raw bytes from the channel. This is called from
114 * various functions such as g_io_channel_read_chars() to
115 * read raw bytes from the channel. Encoding and buffering
116 * issues are dealt with at a higher level.
117 * @io_write: writes raw bytes to the channel. This is called from
118 * various functions such as g_io_channel_write_chars() to
119 * write raw bytes to the channel. Encoding and buffering
120 * issues are dealt with at a higher level.
121 * @io_seek: (optional) seeks the channel. This is called from
122 * g_io_channel_seek() on channels that support it.
123 * @io_close: closes the channel. This is called from
124 * g_io_channel_close() after flushing the buffers.
125 * @io_create_watch: creates a watch on the channel. This call
126 * corresponds directly to g_io_create_watch().
127 * @io_free: called from g_io_channel_unref() when the channel needs to
128 * be freed. This function must free the memory associated
129 * with the channel, including freeing the #GIOChannel
130 * structure itself. The channel buffers have been flushed
131 * and possibly @io_close has been called by the time this
132 * function is called.
133 * @io_set_flags: sets the #GIOFlags on the channel. This is called
134 * from g_io_channel_set_flags() with all flags except
135 * for %G_IO_FLAG_APPEND and %G_IO_FLAG_NONBLOCK masked
137 * @io_get_flags: gets the #GIOFlags for the channel. This function
138 * need only return the %G_IO_FLAG_APPEND and
139 * %G_IO_FLAG_NONBLOCK flags; g_io_channel_get_flags()
140 * automatically adds the others as appropriate.
142 * A table of functions used to handle different types of #GIOChannel
148 * @G_IO_STATUS_ERROR: An error occurred.
149 * @G_IO_STATUS_NORMAL: Success.
150 * @G_IO_STATUS_EOF: End of file.
151 * @G_IO_STATUS_AGAIN: Resource temporarily unavailable.
153 * Stati returned by most of the #GIOFuncs functions.
158 * @G_IO_ERROR_NONE: no error
159 * @G_IO_ERROR_AGAIN: an EAGAIN error occurred
160 * @G_IO_ERROR_INVAL: an EINVAL error occurred
161 * @G_IO_ERROR_UNKNOWN: another error occurred
163 * #GIOError is only used by the deprecated functions
164 * g_io_channel_read(), g_io_channel_write(), and g_io_channel_seek().
167 #define G_IO_NICE_BUF_SIZE 1024
169 /* This needs to be as wide as the largest character in any possible encoding */
170 #define MAX_CHAR_SIZE 10
172 /* Some simplifying macros, which reduce the need to worry whether the
173 * buffers have been allocated. These also make USE_BUF () an lvalue,
174 * which is used in g_io_channel_read_to_end ().
176 #define USE_BUF(channel) ((channel)->encoding ? (channel)->encoded_read_buf \
177 : (channel)->read_buf)
178 #define BUF_LEN(string) ((string) ? (string)->len : 0)
180 static GIOError g_io_error_get_from_g_error (GIOStatus status,
182 static void g_io_channel_purge (GIOChannel *channel);
183 static GIOStatus g_io_channel_fill_buffer (GIOChannel *channel,
185 static GIOStatus g_io_channel_read_line_backend (GIOChannel *channel,
187 gsize *terminator_pos,
192 * @channel: a #GIOChannel
194 * Initializes a #GIOChannel struct.
196 * This is called by each of the above functions when creating a
197 * #GIOChannel, and so is not often needed by the application
198 * programmer (unless you are creating a new type of #GIOChannel).
201 g_io_channel_init (GIOChannel *channel)
203 channel->ref_count = 1;
204 channel->encoding = g_strdup ("UTF-8");
205 channel->line_term = NULL;
206 channel->line_term_len = 0;
207 channel->buf_size = G_IO_NICE_BUF_SIZE;
208 channel->read_cd = (GIConv) -1;
209 channel->write_cd = (GIConv) -1;
210 channel->read_buf = NULL; /* Lazy allocate buffers */
211 channel->encoded_read_buf = NULL;
212 channel->write_buf = NULL;
213 channel->partial_write_buf[0] = '\0';
214 channel->use_buffer = TRUE;
215 channel->do_encode = FALSE;
216 channel->close_on_unref = FALSE;
221 * @channel: a #GIOChannel
223 * Increments the reference count of a #GIOChannel.
225 * Returns: the @channel that was passed in (since 2.6)
228 g_io_channel_ref (GIOChannel *channel)
230 g_return_val_if_fail (channel != NULL, NULL);
232 g_atomic_int_inc (&channel->ref_count);
238 * g_io_channel_unref:
239 * @channel: a #GIOChannel
241 * Decrements the reference count of a #GIOChannel.
244 g_io_channel_unref (GIOChannel *channel)
248 g_return_if_fail (channel != NULL);
250 is_zero = g_atomic_int_dec_and_test (&channel->ref_count);
252 if (G_UNLIKELY (is_zero))
254 if (channel->close_on_unref)
255 g_io_channel_shutdown (channel, TRUE, NULL);
257 g_io_channel_purge (channel);
258 g_free (channel->encoding);
259 if (channel->read_cd != (GIConv) -1)
260 g_iconv_close (channel->read_cd);
261 if (channel->write_cd != (GIConv) -1)
262 g_iconv_close (channel->write_cd);
263 g_free (channel->line_term);
264 if (channel->read_buf)
265 g_string_free (channel->read_buf, TRUE);
266 if (channel->write_buf)
267 g_string_free (channel->write_buf, TRUE);
268 if (channel->encoded_read_buf)
269 g_string_free (channel->encoded_read_buf, TRUE);
270 channel->funcs->io_free (channel);
275 g_io_error_get_from_g_error (GIOStatus status,
280 case G_IO_STATUS_NORMAL:
281 case G_IO_STATUS_EOF:
282 return G_IO_ERROR_NONE;
283 case G_IO_STATUS_AGAIN:
284 return G_IO_ERROR_AGAIN;
285 case G_IO_STATUS_ERROR:
286 g_return_val_if_fail (err != NULL, G_IO_ERROR_UNKNOWN);
288 if (err->domain != G_IO_CHANNEL_ERROR)
289 return G_IO_ERROR_UNKNOWN;
292 case G_IO_CHANNEL_ERROR_INVAL:
293 return G_IO_ERROR_INVAL;
295 return G_IO_ERROR_UNKNOWN;
298 g_assert_not_reached ();
304 * @channel: a #GIOChannel
305 * @buf: a buffer to read the data into (which should be at least
307 * @count: the number of bytes to read from the #GIOChannel
308 * @bytes_read: returns the number of bytes actually read
310 * Reads data from a #GIOChannel.
312 * Return value: %G_IO_ERROR_NONE if the operation was successful.
314 * Deprecated:2.2: Use g_io_channel_read_chars() instead.
317 g_io_channel_read (GIOChannel *channel,
326 g_return_val_if_fail (channel != NULL, G_IO_ERROR_UNKNOWN);
327 g_return_val_if_fail (bytes_read != NULL, G_IO_ERROR_UNKNOWN);
333 return G_IO_ERROR_NONE;
336 g_return_val_if_fail (buf != NULL, G_IO_ERROR_UNKNOWN);
338 status = channel->funcs->io_read (channel, buf, count, bytes_read, &err);
340 error = g_io_error_get_from_g_error (status, err);
349 * g_io_channel_write:
350 * @channel: a #GIOChannel
351 * @buf: the buffer containing the data to write
352 * @count: the number of bytes to write
353 * @bytes_written: the number of bytes actually written
355 * Writes data to a #GIOChannel.
357 * Return value: %G_IO_ERROR_NONE if the operation was successful.
359 * Deprecated:2.2: Use g_io_channel_write_chars() instead.
362 g_io_channel_write (GIOChannel *channel,
365 gsize *bytes_written)
371 g_return_val_if_fail (channel != NULL, G_IO_ERROR_UNKNOWN);
372 g_return_val_if_fail (bytes_written != NULL, G_IO_ERROR_UNKNOWN);
374 status = channel->funcs->io_write (channel, buf, count, bytes_written, &err);
376 error = g_io_error_get_from_g_error (status, err);
386 * @channel: a #GIOChannel
387 * @offset: an offset, in bytes, which is added to the position specified
389 * @type: the position in the file, which can be %G_SEEK_CUR (the current
390 * position), %G_SEEK_SET (the start of the file), or %G_SEEK_END
391 * (the end of the file)
393 * Sets the current position in the #GIOChannel, similar to the standard
394 * library function fseek().
396 * Return value: %G_IO_ERROR_NONE if the operation was successful.
398 * Deprecated:2.2: Use g_io_channel_seek_position() instead.
401 g_io_channel_seek (GIOChannel *channel,
409 g_return_val_if_fail (channel != NULL, G_IO_ERROR_UNKNOWN);
410 g_return_val_if_fail (channel->is_seekable, G_IO_ERROR_UNKNOWN);
419 g_warning ("g_io_channel_seek: unknown seek type");
420 return G_IO_ERROR_UNKNOWN;
423 status = channel->funcs->io_seek (channel, offset, type, &err);
425 error = g_io_error_get_from_g_error (status, err);
433 /* The function g_io_channel_new_file() is prototyped in both
434 * giounix.c and giowin32.c, so we stick its documentation here.
438 * g_io_channel_new_file:
439 * @filename: A string containing the name of a file
440 * @mode: One of "r", "w", "a", "r+", "w+", "a+". These have
441 * the same meaning as in fopen()
442 * @error: A location to return an error of type %G_FILE_ERROR
444 * Open a file @filename as a #GIOChannel using mode @mode. This
445 * channel will be closed when the last reference to it is dropped,
446 * so there is no need to call g_io_channel_close() (though doing
447 * so will not cause problems, as long as no attempt is made to
448 * access the channel after it is closed).
450 * Return value: A #GIOChannel on success, %NULL on failure.
454 * g_io_channel_close:
455 * @channel: A #GIOChannel
457 * Close an IO channel. Any pending data to be written will be
458 * flushed, ignoring errors. The channel will not be freed until the
459 * last reference is dropped using g_io_channel_unref().
461 * Deprecated:2.2: Use g_io_channel_shutdown() instead.
464 g_io_channel_close (GIOChannel *channel)
468 g_return_if_fail (channel != NULL);
470 g_io_channel_purge (channel);
472 channel->funcs->io_close (channel, &err);
475 { /* No way to return the error */
476 g_warning ("Error closing channel: %s", err->message);
480 channel->close_on_unref = FALSE; /* Because we already did */
481 channel->is_readable = FALSE;
482 channel->is_writeable = FALSE;
483 channel->is_seekable = FALSE;
487 * g_io_channel_shutdown:
488 * @channel: a #GIOChannel
489 * @flush: if %TRUE, flush pending
490 * @err: location to store a #GIOChannelError
492 * Close an IO channel. Any pending data to be written will be
493 * flushed if @flush is %TRUE. The channel will not be freed until the
494 * last reference is dropped using g_io_channel_unref().
496 * Return value: the status of the operation.
499 g_io_channel_shutdown (GIOChannel *channel,
503 GIOStatus status, result;
504 GError *tmperr = NULL;
506 g_return_val_if_fail (channel != NULL, G_IO_STATUS_ERROR);
507 g_return_val_if_fail (err == NULL || *err == NULL, G_IO_STATUS_ERROR);
509 if (channel->write_buf && channel->write_buf->len > 0)
515 /* Set the channel to blocking, to avoid a busy loop
517 flags = g_io_channel_get_flags (channel);
518 /* Ignore any errors here, they're irrelevant */
519 g_io_channel_set_flags (channel, flags & ~G_IO_FLAG_NONBLOCK, NULL);
521 result = g_io_channel_flush (channel, &tmperr);
524 result = G_IO_STATUS_NORMAL;
526 g_string_truncate(channel->write_buf, 0);
529 result = G_IO_STATUS_NORMAL;
531 if (channel->partial_write_buf[0] != '\0')
534 g_warning ("Partial character at end of write buffer not flushed.\n");
535 channel->partial_write_buf[0] = '\0';
538 status = channel->funcs->io_close (channel, err);
540 channel->close_on_unref = FALSE; /* Because we already did */
541 channel->is_readable = FALSE;
542 channel->is_writeable = FALSE;
543 channel->is_seekable = FALSE;
545 if (status != G_IO_STATUS_NORMAL)
547 g_clear_error (&tmperr);
550 else if (result != G_IO_STATUS_NORMAL)
552 g_propagate_error (err, tmperr);
556 return G_IO_STATUS_NORMAL;
559 /* This function is used for the final flush on close or unref */
561 g_io_channel_purge (GIOChannel *channel)
566 g_return_if_fail (channel != NULL);
568 if (channel->write_buf && channel->write_buf->len > 0)
572 /* Set the channel to blocking, to avoid a busy loop
574 flags = g_io_channel_get_flags (channel);
575 g_io_channel_set_flags (channel, flags & ~G_IO_FLAG_NONBLOCK, NULL);
577 status = g_io_channel_flush (channel, &err);
580 { /* No way to return the error */
581 g_warning ("Error flushing string: %s", err->message);
586 /* Flush these in case anyone tries to close without unrefing */
588 if (channel->read_buf)
589 g_string_truncate (channel->read_buf, 0);
590 if (channel->write_buf)
591 g_string_truncate (channel->write_buf, 0);
592 if (channel->encoding)
594 if (channel->encoded_read_buf)
595 g_string_truncate (channel->encoded_read_buf, 0);
597 if (channel->partial_write_buf[0] != '\0')
599 g_warning ("Partial character at end of write buffer not flushed.\n");
600 channel->partial_write_buf[0] = '\0';
607 * @channel: a #GIOChannel to watch
608 * @condition: conditions to watch for
610 * Creates a #GSource that's dispatched when @condition is met for the
611 * given @channel. For example, if condition is #G_IO_IN, the source will
612 * be dispatched when there's data available for reading.
614 * g_io_add_watch() is a simpler interface to this same functionality, for
615 * the case where you want to add the source to the default main loop context
616 * at the default priority.
618 * On Windows, polling a #GSource created to watch a channel for a socket
619 * puts the socket in non-blocking mode. This is a side-effect of the
620 * implementation and unavoidable.
622 * Returns: a new #GSource
625 g_io_create_watch (GIOChannel *channel,
626 GIOCondition condition)
628 g_return_val_if_fail (channel != NULL, NULL);
630 return channel->funcs->io_create_watch (channel, condition);
634 * g_io_add_watch_full:
635 * @channel: a #GIOChannel
636 * @priority: the priority of the #GIOChannel source
637 * @condition: the condition to watch for
638 * @func: the function to call when the condition is satisfied
639 * @user_data: user data to pass to @func
640 * @notify: the function to call when the source is removed
642 * Adds the #GIOChannel into the default main loop context
643 * with the given priority.
645 * This internally creates a main loop source using g_io_create_watch()
646 * and attaches it to the main loop context with g_source_attach().
647 * You can do these steps manually if you need greater control.
649 * Returns: the event source id
652 g_io_add_watch_full (GIOChannel *channel,
654 GIOCondition condition,
657 GDestroyNotify notify)
662 g_return_val_if_fail (channel != NULL, 0);
664 source = g_io_create_watch (channel, condition);
666 if (priority != G_PRIORITY_DEFAULT)
667 g_source_set_priority (source, priority);
668 g_source_set_callback (source, (GSourceFunc)func, user_data, notify);
670 id = g_source_attach (source, NULL);
671 g_source_unref (source);
678 * @channel: a #GIOChannel
679 * @condition: the condition to watch for
680 * @func: the function to call when the condition is satisfied
681 * @user_data: user data to pass to @func
683 * Adds the #GIOChannel into the default main loop context
684 * with the default priority.
686 * Returns: the event source id
690 * @source: the #GIOChannel event source
691 * @condition: the condition which has been satisfied
692 * @data: user data set in g_io_add_watch() or g_io_add_watch_full()
693 * @Returns: the function should return %FALSE if the event source
696 * Specifies the type of function passed to g_io_add_watch() or
697 * g_io_add_watch_full(), which is called when the requested condition
698 * on a #GIOChannel is satisfied.
702 * @G_IO_IN: There is data to read.
703 * @G_IO_OUT: Data can be written (without blocking).
704 * @G_IO_PRI: There is urgent data to read.
705 * @G_IO_ERR: Error condition.
706 * @G_IO_HUP: Hung up (the connection has been broken, usually for
707 * pipes and sockets).
708 * @G_IO_NVAL: Invalid request. The file descriptor is not open.
710 * A bitwise combination representing a condition to watch for on an
714 g_io_add_watch (GIOChannel *channel,
715 GIOCondition condition,
719 return g_io_add_watch_full (channel, G_PRIORITY_DEFAULT, condition, func, user_data, NULL);
723 * g_io_channel_get_buffer_condition:
724 * @channel: A #GIOChannel
726 * This function returns a #GIOCondition depending on whether there
727 * is data to be read/space to write data in the internal buffers in
728 * the #GIOChannel. Only the flags %G_IO_IN and %G_IO_OUT may be set.
730 * Return value: A #GIOCondition
733 g_io_channel_get_buffer_condition (GIOChannel *channel)
735 GIOCondition condition = 0;
737 if (channel->encoding)
739 if (channel->encoded_read_buf && (channel->encoded_read_buf->len > 0))
740 condition |= G_IO_IN; /* Only return if we have full characters */
744 if (channel->read_buf && (channel->read_buf->len > 0))
745 condition |= G_IO_IN;
748 if (channel->write_buf && (channel->write_buf->len < channel->buf_size))
749 condition |= G_IO_OUT;
755 * g_io_channel_error_from_errno:
756 * @en: an <literal>errno</literal> error number, e.g. %EINVAL
758 * Converts an <literal>errno</literal> error number to a #GIOChannelError.
760 * Return value: a #GIOChannelError error number, e.g.
761 * %G_IO_CHANNEL_ERROR_INVAL.
764 g_io_channel_error_from_errno (gint en)
767 g_return_val_if_fail (en != EAGAIN, G_IO_CHANNEL_ERROR_FAILED);
774 g_warning("Invalid file descriptor.\n");
775 return G_IO_CHANNEL_ERROR_FAILED;
780 g_warning("Buffer outside valid address space.\n");
781 return G_IO_CHANNEL_ERROR_FAILED;
786 return G_IO_CHANNEL_ERROR_FBIG;
790 /* In general, we should catch EINTR before we get here,
791 * but close() is allowed to return EINTR by POSIX, so
792 * we need to catch it here; EINTR from close() is
793 * unrecoverable, because it's undefined whether
794 * the fd was actually closed or not, so we just return
795 * a generic error code.
798 return G_IO_CHANNEL_ERROR_FAILED;
803 return G_IO_CHANNEL_ERROR_INVAL;
808 return G_IO_CHANNEL_ERROR_IO;
813 return G_IO_CHANNEL_ERROR_ISDIR;
818 return G_IO_CHANNEL_ERROR_NOSPC;
823 return G_IO_CHANNEL_ERROR_NXIO;
828 return G_IO_CHANNEL_ERROR_OVERFLOW;
833 return G_IO_CHANNEL_ERROR_PIPE;
837 return G_IO_CHANNEL_ERROR_FAILED;
842 * g_io_channel_set_buffer_size:
843 * @channel: a #GIOChannel
844 * @size: the size of the buffer, or 0 to let GLib pick a good size
846 * Sets the buffer size.
849 g_io_channel_set_buffer_size (GIOChannel *channel,
852 g_return_if_fail (channel != NULL);
855 size = G_IO_NICE_BUF_SIZE;
857 if (size < MAX_CHAR_SIZE)
858 size = MAX_CHAR_SIZE;
860 channel->buf_size = size;
864 * g_io_channel_get_buffer_size:
865 * @channel: a #GIOChannel
867 * Gets the buffer size.
869 * Return value: the size of the buffer.
872 g_io_channel_get_buffer_size (GIOChannel *channel)
874 g_return_val_if_fail (channel != NULL, 0);
876 return channel->buf_size;
880 * g_io_channel_set_line_term:
881 * @channel: a #GIOChannel
882 * @line_term: The line termination string. Use %NULL for autodetect.
883 * Autodetection breaks on "\n", "\r\n", "\r", "\0", and
884 * the Unicode paragraph separator. Autodetection should
885 * not be used for anything other than file-based channels.
886 * @length: The length of the termination string. If -1 is passed, the
887 * string is assumed to be nul-terminated. This option allows
888 * termination strings with embedded nuls.
890 * This sets the string that #GIOChannel uses to determine
891 * where in the file a line break occurs.
894 g_io_channel_set_line_term (GIOChannel *channel,
895 const gchar *line_term,
898 g_return_if_fail (channel != NULL);
899 g_return_if_fail (line_term == NULL || length != 0); /* Disallow "" */
901 if (line_term == NULL)
904 length = strlen (line_term);
906 g_free (channel->line_term);
907 channel->line_term = line_term ? g_memdup (line_term, length) : NULL;
908 channel->line_term_len = length;
912 * g_io_channel_get_line_term:
913 * @channel: a #GIOChannel
914 * @length: a location to return the length of the line terminator
916 * This returns the string that #GIOChannel uses to determine
917 * where in the file a line break occurs. A value of %NULL
918 * indicates autodetection.
920 * Return value: The line termination string. This value
921 * is owned by GLib and must not be freed.
923 G_CONST_RETURN gchar*
924 g_io_channel_get_line_term (GIOChannel *channel,
927 g_return_val_if_fail (channel != NULL, NULL);
930 *length = channel->line_term_len;
932 return channel->line_term;
936 * g_io_channel_set_flags:
937 * @channel: a #GIOChannel
938 * @flags: the flags to set on the IO channel
939 * @error: A location to return an error of type #GIOChannelError
941 * Sets the (writeable) flags in @channel to (@flags & %G_IO_CHANNEL_SET_MASK).
943 * Return value: the status of the operation.
947 * @G_IO_FLAG_APPEND: turns on append mode, corresponds to %O_APPEND
948 * (see the documentation of the UNIX open()
950 * @G_IO_FLAG_NONBLOCK: turns on nonblocking mode, corresponds to
951 * %O_NONBLOCK/%O_NDELAY (see the documentation of
952 * the UNIX open() syscall).
953 * @G_IO_FLAG_IS_READABLE: indicates that the io channel is readable.
954 * This flag can not be changed.
955 * @G_IO_FLAG_IS_WRITEABLE: indicates that the io channel is writable.
956 * This flag can not be changed.
957 * @G_IO_FLAG_IS_SEEKABLE: indicates that the io channel is seekable,
958 * i.e. that g_io_channel_seek_position() can
959 * be used on it. This flag can not be changed.
960 * @G_IO_FLAG_MASK: the mask that specifies all the valid flags.
961 * @G_IO_FLAG_GET_MASK: the mask of the flags that are returned from
962 * g_io_channel_get_flags().
963 * @G_IO_FLAG_SET_MASK: the mask of the flags that the user can modify
964 * with g_io_channel_set_flags().
966 * Specifies properties of a #GIOChannel. Some of the flags can only be
967 * read with g_io_channel_get_flags(), but not changed with
968 * g_io_channel_set_flags().
971 g_io_channel_set_flags (GIOChannel *channel,
975 g_return_val_if_fail (channel != NULL, G_IO_STATUS_ERROR);
976 g_return_val_if_fail ((error == NULL) || (*error == NULL),
979 return (*channel->funcs->io_set_flags) (channel,
980 flags & G_IO_FLAG_SET_MASK,
985 * g_io_channel_get_flags:
986 * @channel: a #GIOChannel
988 * Gets the current flags for a #GIOChannel, including read-only
989 * flags such as %G_IO_FLAG_IS_READABLE.
991 * The values of the flags %G_IO_FLAG_IS_READABLE and %G_IO_FLAG_IS_WRITEABLE
992 * are cached for internal use by the channel when it is created.
993 * If they should change at some later point (e.g. partial shutdown
994 * of a socket with the UNIX shutdown() function), the user
995 * should immediately call g_io_channel_get_flags() to update
996 * the internal values of these flags.
998 * Return value: the flags which are set on the channel
1001 g_io_channel_get_flags (GIOChannel *channel)
1005 g_return_val_if_fail (channel != NULL, 0);
1007 flags = (* channel->funcs->io_get_flags) (channel);
1009 /* Cross implementation code */
1011 if (channel->is_seekable)
1012 flags |= G_IO_FLAG_IS_SEEKABLE;
1013 if (channel->is_readable)
1014 flags |= G_IO_FLAG_IS_READABLE;
1015 if (channel->is_writeable)
1016 flags |= G_IO_FLAG_IS_WRITEABLE;
1022 * g_io_channel_set_close_on_unref:
1023 * @channel: a #GIOChannel
1024 * @do_close: Whether to close the channel on the final unref of
1025 * the GIOChannel data structure. The default value of
1026 * this is %TRUE for channels created by g_io_channel_new_file (),
1027 * and %FALSE for all other channels.
1029 * Setting this flag to %TRUE for a channel you have already closed
1030 * can cause problems.
1033 g_io_channel_set_close_on_unref (GIOChannel *channel,
1036 g_return_if_fail (channel != NULL);
1038 channel->close_on_unref = do_close;
1042 * g_io_channel_get_close_on_unref:
1043 * @channel: a #GIOChannel.
1045 * Returns whether the file/socket/whatever associated with @channel
1046 * will be closed when @channel receives its final unref and is
1047 * destroyed. The default value of this is %TRUE for channels created
1048 * by g_io_channel_new_file (), and %FALSE for all other channels.
1050 * Return value: Whether the channel will be closed on the final unref of
1051 * the GIOChannel data structure.
1054 g_io_channel_get_close_on_unref (GIOChannel *channel)
1056 g_return_val_if_fail (channel != NULL, FALSE);
1058 return channel->close_on_unref;
1062 * g_io_channel_seek_position:
1063 * @channel: a #GIOChannel
1064 * @offset: The offset in bytes from the position specified by @type
1065 * @type: a #GSeekType. The type %G_SEEK_CUR is only allowed in those
1066 * cases where a call to g_io_channel_set_encoding ()
1067 * is allowed. See the documentation for
1068 * g_io_channel_set_encoding () for details.
1069 * @error: A location to return an error of type #GIOChannelError
1071 * Replacement for g_io_channel_seek() with the new API.
1073 * Return value: the status of the operation.
1077 * @G_SEEK_CUR: the current position in the file.
1078 * @G_SEEK_SET: the start of the file.
1079 * @G_SEEK_END: the end of the file.
1081 * An enumeration specifying the base position for a
1082 * g_io_channel_seek_position() operation.
1085 g_io_channel_seek_position (GIOChannel *channel,
1092 /* For files, only one of the read and write buffers can contain data.
1093 * For sockets, both can contain data.
1096 g_return_val_if_fail (channel != NULL, G_IO_STATUS_ERROR);
1097 g_return_val_if_fail ((error == NULL) || (*error == NULL),
1099 g_return_val_if_fail (channel->is_seekable, G_IO_STATUS_ERROR);
1103 case G_SEEK_CUR: /* The user is seeking relative to the head of the buffer */
1104 if (channel->use_buffer)
1106 if (channel->do_encode && channel->encoded_read_buf
1107 && channel->encoded_read_buf->len > 0)
1109 g_warning ("Seek type G_SEEK_CUR not allowed for this"
1110 " channel's encoding.\n");
1111 return G_IO_STATUS_ERROR;
1113 if (channel->read_buf)
1114 offset -= channel->read_buf->len;
1115 if (channel->encoded_read_buf)
1117 g_assert (channel->encoded_read_buf->len == 0 || !channel->do_encode);
1119 /* If there's anything here, it's because the encoding is UTF-8,
1120 * so we can just subtract the buffer length, the same as for
1121 * the unencoded data.
1124 offset -= channel->encoded_read_buf->len;
1132 g_warning ("g_io_channel_seek_position: unknown seek type");
1133 return G_IO_STATUS_ERROR;
1136 if (channel->use_buffer)
1138 status = g_io_channel_flush (channel, error);
1139 if (status != G_IO_STATUS_NORMAL)
1143 status = channel->funcs->io_seek (channel, offset, type, error);
1145 if ((status == G_IO_STATUS_NORMAL) && (channel->use_buffer))
1147 if (channel->read_buf)
1148 g_string_truncate (channel->read_buf, 0);
1150 /* Conversion state no longer matches position in file */
1151 if (channel->read_cd != (GIConv) -1)
1152 g_iconv (channel->read_cd, NULL, NULL, NULL, NULL);
1153 if (channel->write_cd != (GIConv) -1)
1154 g_iconv (channel->write_cd, NULL, NULL, NULL, NULL);
1156 if (channel->encoded_read_buf)
1158 g_assert (channel->encoded_read_buf->len == 0 || !channel->do_encode);
1159 g_string_truncate (channel->encoded_read_buf, 0);
1162 if (channel->partial_write_buf[0] != '\0')
1164 g_warning ("Partial character at end of write buffer not flushed.\n");
1165 channel->partial_write_buf[0] = '\0';
1173 * g_io_channel_flush:
1174 * @channel: a #GIOChannel
1175 * @error: location to store an error of type #GIOChannelError
1177 * Flushes the write buffer for the GIOChannel.
1179 * Return value: the status of the operation: One of
1180 * #G_IO_STATUS_NORMAL, #G_IO_STATUS_AGAIN, or
1181 * #G_IO_STATUS_ERROR.
1184 g_io_channel_flush (GIOChannel *channel,
1188 gsize this_time = 1, bytes_written = 0;
1190 g_return_val_if_fail (channel != NULL, G_IO_STATUS_ERROR);
1191 g_return_val_if_fail ((error == NULL) || (*error == NULL), G_IO_STATUS_ERROR);
1193 if (channel->write_buf == NULL || channel->write_buf->len == 0)
1194 return G_IO_STATUS_NORMAL;
1198 g_assert (this_time > 0);
1200 status = channel->funcs->io_write (channel,
1201 channel->write_buf->str + bytes_written,
1202 channel->write_buf->len - bytes_written,
1204 bytes_written += this_time;
1206 while ((bytes_written < channel->write_buf->len)
1207 && (status == G_IO_STATUS_NORMAL));
1209 g_string_erase (channel->write_buf, 0, bytes_written);
1215 * g_io_channel_set_buffered:
1216 * @channel: a #GIOChannel
1217 * @buffered: whether to set the channel buffered or unbuffered
1219 * The buffering state can only be set if the channel's encoding
1220 * is %NULL. For any other encoding, the channel must be buffered.
1222 * A buffered channel can only be set unbuffered if the channel's
1223 * internal buffers have been flushed. Newly created channels or
1224 * channels which have returned %G_IO_STATUS_EOF
1225 * not require such a flush. For write-only channels, a call to
1226 * g_io_channel_flush () is sufficient. For all other channels,
1227 * the buffers may be flushed by a call to g_io_channel_seek_position ().
1228 * This includes the possibility of seeking with seek type %G_SEEK_CUR
1229 * and an offset of zero. Note that this means that socket-based
1230 * channels cannot be set unbuffered once they have had data
1233 * On unbuffered channels, it is safe to mix read and write
1234 * calls from the new and old APIs, if this is necessary for
1235 * maintaining old code.
1237 * The default state of the channel is buffered.
1240 g_io_channel_set_buffered (GIOChannel *channel,
1243 g_return_if_fail (channel != NULL);
1245 if (channel->encoding != NULL)
1247 g_warning ("Need to have NULL encoding to set the buffering state of the "
1252 g_return_if_fail (!channel->read_buf || channel->read_buf->len == 0);
1253 g_return_if_fail (!channel->write_buf || channel->write_buf->len == 0);
1255 channel->use_buffer = buffered;
1259 * g_io_channel_get_buffered:
1260 * @channel: a #GIOChannel
1262 * Returns whether @channel is buffered.
1264 * Return Value: %TRUE if the @channel is buffered.
1267 g_io_channel_get_buffered (GIOChannel *channel)
1269 g_return_val_if_fail (channel != NULL, FALSE);
1271 return channel->use_buffer;
1275 * g_io_channel_set_encoding:
1276 * @channel: a #GIOChannel
1277 * @encoding: the encoding type
1278 * @error: location to store an error of type #GConvertError
1280 * Sets the encoding for the input/output of the channel.
1281 * The internal encoding is always UTF-8. The default encoding
1282 * for the external file is UTF-8.
1284 * The encoding %NULL is safe to use with binary data.
1286 * The encoding can only be set if one of the following conditions
1290 * The channel was just created, and has not been written to or read
1292 * </para></listitem>
1294 * The channel is write-only.
1295 * </para></listitem>
1297 * The channel is a file, and the file pointer was just
1298 * repositioned by a call to g_io_channel_seek_position().
1299 * (This flushes all the internal buffers.)
1300 * </para></listitem>
1302 * The current encoding is %NULL or UTF-8.
1303 * </para></listitem>
1305 * One of the (new API) read functions has just returned %G_IO_STATUS_EOF
1306 * (or, in the case of g_io_channel_read_to_end(), %G_IO_STATUS_NORMAL).
1307 * </para></listitem>
1309 * One of the functions g_io_channel_read_chars() or
1310 * g_io_channel_read_unichar() has returned %G_IO_STATUS_AGAIN or
1311 * %G_IO_STATUS_ERROR. This may be useful in the case of
1312 * %G_CONVERT_ERROR_ILLEGAL_SEQUENCE.
1313 * Returning one of these statuses from g_io_channel_read_line(),
1314 * g_io_channel_read_line_string(), or g_io_channel_read_to_end()
1315 * does <emphasis>not</emphasis> guarantee that the encoding can
1317 * </para></listitem>
1319 * Channels which do not meet one of the above conditions cannot call
1320 * g_io_channel_seek_position() with an offset of %G_SEEK_CUR, and, if
1321 * they are "seekable", cannot call g_io_channel_write_chars() after
1322 * calling one of the API "read" functions.
1324 * Return Value: %G_IO_STATUS_NORMAL if the encoding was successfully set.
1327 g_io_channel_set_encoding (GIOChannel *channel,
1328 const gchar *encoding,
1331 GIConv read_cd, write_cd;
1332 gboolean did_encode;
1334 g_return_val_if_fail (channel != NULL, G_IO_STATUS_ERROR);
1335 g_return_val_if_fail ((error == NULL) || (*error == NULL), G_IO_STATUS_ERROR);
1337 /* Make sure the encoded buffers are empty */
1339 g_return_val_if_fail (!channel->do_encode || !channel->encoded_read_buf ||
1340 channel->encoded_read_buf->len == 0, G_IO_STATUS_ERROR);
1342 if (!channel->use_buffer)
1344 g_warning ("Need to set the channel buffered before setting the encoding.\n");
1345 g_warning ("Assuming this is what you meant and acting accordingly.\n");
1347 channel->use_buffer = TRUE;
1350 if (channel->partial_write_buf[0] != '\0')
1352 g_warning ("Partial character at end of write buffer not flushed.\n");
1353 channel->partial_write_buf[0] = '\0';
1356 did_encode = channel->do_encode;
1358 if (!encoding || strcmp (encoding, "UTF8") == 0 || strcmp (encoding, "UTF-8") == 0)
1360 channel->do_encode = FALSE;
1361 read_cd = write_cd = (GIConv) -1;
1366 const gchar *from_enc = NULL, *to_enc = NULL;
1368 if (channel->is_readable)
1370 read_cd = g_iconv_open ("UTF-8", encoding);
1372 if (read_cd == (GIConv) -1)
1375 from_enc = encoding;
1380 read_cd = (GIConv) -1;
1382 if (channel->is_writeable && err == 0)
1384 write_cd = g_iconv_open (encoding, "UTF-8");
1386 if (write_cd == (GIConv) -1)
1394 write_cd = (GIConv) -1;
1398 g_assert (from_enc);
1402 g_set_error (error, G_CONVERT_ERROR, G_CONVERT_ERROR_NO_CONVERSION,
1403 _("Conversion from character set '%s' to '%s' is not supported"),
1406 g_set_error (error, G_CONVERT_ERROR, G_CONVERT_ERROR_FAILED,
1407 _("Could not open converter from '%s' to '%s': %s"),
1408 from_enc, to_enc, g_strerror (err));
1410 if (read_cd != (GIConv) -1)
1411 g_iconv_close (read_cd);
1412 if (write_cd != (GIConv) -1)
1413 g_iconv_close (write_cd);
1415 return G_IO_STATUS_ERROR;
1418 channel->do_encode = TRUE;
1421 /* The encoding is ok, so set the fields in channel */
1423 if (channel->read_cd != (GIConv) -1)
1424 g_iconv_close (channel->read_cd);
1425 if (channel->write_cd != (GIConv) -1)
1426 g_iconv_close (channel->write_cd);
1428 if (channel->encoded_read_buf && channel->encoded_read_buf->len > 0)
1430 g_assert (!did_encode); /* Encoding UTF-8, NULL doesn't use encoded_read_buf */
1432 /* This is just validated UTF-8, so we can copy it back into read_buf
1433 * so it can be encoded in whatever the new encoding is.
1436 g_string_prepend_len (channel->read_buf, channel->encoded_read_buf->str,
1437 channel->encoded_read_buf->len);
1438 g_string_truncate (channel->encoded_read_buf, 0);
1441 channel->read_cd = read_cd;
1442 channel->write_cd = write_cd;
1444 g_free (channel->encoding);
1445 channel->encoding = g_strdup (encoding);
1447 return G_IO_STATUS_NORMAL;
1451 * g_io_channel_get_encoding:
1452 * @channel: a #GIOChannel
1454 * Gets the encoding for the input/output of the channel.
1455 * The internal encoding is always UTF-8. The encoding %NULL
1456 * makes the channel safe for binary data.
1458 * Return value: A string containing the encoding, this string is
1459 * owned by GLib and must not be freed.
1461 G_CONST_RETURN gchar*
1462 g_io_channel_get_encoding (GIOChannel *channel)
1464 g_return_val_if_fail (channel != NULL, NULL);
1466 return channel->encoding;
1470 g_io_channel_fill_buffer (GIOChannel *channel,
1473 gsize read_size, cur_len, oldlen;
1476 if (channel->is_seekable && channel->write_buf && channel->write_buf->len > 0)
1478 status = g_io_channel_flush (channel, err);
1479 if (status != G_IO_STATUS_NORMAL)
1482 if (channel->is_seekable && channel->partial_write_buf[0] != '\0')
1484 g_warning ("Partial character at end of write buffer not flushed.\n");
1485 channel->partial_write_buf[0] = '\0';
1488 if (!channel->read_buf)
1489 channel->read_buf = g_string_sized_new (channel->buf_size);
1491 cur_len = channel->read_buf->len;
1493 g_string_set_size (channel->read_buf, channel->read_buf->len + channel->buf_size);
1495 status = channel->funcs->io_read (channel, channel->read_buf->str + cur_len,
1496 channel->buf_size, &read_size, err);
1498 g_assert ((status == G_IO_STATUS_NORMAL) || (read_size == 0));
1500 g_string_truncate (channel->read_buf, read_size + cur_len);
1502 if ((status != G_IO_STATUS_NORMAL) &&
1503 ((status != G_IO_STATUS_EOF) || (channel->read_buf->len == 0)))
1506 g_assert (channel->read_buf->len > 0);
1508 if (channel->encoded_read_buf)
1509 oldlen = channel->encoded_read_buf->len;
1513 if (channel->encoding)
1514 channel->encoded_read_buf = g_string_sized_new (channel->buf_size);
1517 if (channel->do_encode)
1519 gsize errnum, inbytes_left, outbytes_left;
1520 gchar *inbuf, *outbuf;
1523 g_assert (channel->encoded_read_buf);
1527 inbytes_left = channel->read_buf->len;
1528 outbytes_left = MAX (channel->read_buf->len,
1529 channel->encoded_read_buf->allocated_len
1530 - channel->encoded_read_buf->len - 1); /* 1 for NULL */
1531 outbytes_left = MAX (outbytes_left, 6);
1533 inbuf = channel->read_buf->str;
1534 g_string_set_size (channel->encoded_read_buf,
1535 channel->encoded_read_buf->len + outbytes_left);
1536 outbuf = channel->encoded_read_buf->str + channel->encoded_read_buf->len
1539 errnum = g_iconv (channel->read_cd, &inbuf, &inbytes_left,
1540 &outbuf, &outbytes_left);
1543 g_assert (inbuf + inbytes_left == channel->read_buf->str
1544 + channel->read_buf->len);
1545 g_assert (outbuf + outbytes_left == channel->encoded_read_buf->str
1546 + channel->encoded_read_buf->len);
1548 g_string_erase (channel->read_buf, 0,
1549 channel->read_buf->len - inbytes_left);
1550 g_string_truncate (channel->encoded_read_buf,
1551 channel->encoded_read_buf->len - outbytes_left);
1553 if (errnum == (gsize) -1)
1558 if ((oldlen == channel->encoded_read_buf->len)
1559 && (status == G_IO_STATUS_EOF))
1560 status = G_IO_STATUS_EOF;
1562 status = G_IO_STATUS_NORMAL;
1565 /* Buffer size at least 6, wrote at least on character */
1566 g_assert (inbuf != channel->read_buf->str);
1569 if (oldlen < channel->encoded_read_buf->len)
1570 status = G_IO_STATUS_NORMAL;
1573 g_set_error_literal (err, G_CONVERT_ERROR,
1574 G_CONVERT_ERROR_ILLEGAL_SEQUENCE,
1575 _("Invalid byte sequence in conversion input"));
1576 return G_IO_STATUS_ERROR;
1580 g_assert (errval != EBADF); /* The converter should be open */
1581 g_set_error (err, G_CONVERT_ERROR, G_CONVERT_ERROR_FAILED,
1582 _("Error during conversion: %s"), g_strerror (errval));
1583 return G_IO_STATUS_ERROR;
1586 g_assert ((status != G_IO_STATUS_NORMAL)
1587 || (channel->encoded_read_buf->len > 0));
1589 else if (channel->encoding) /* UTF-8 */
1591 gchar *nextchar, *lastchar;
1593 g_assert (channel->encoded_read_buf);
1595 nextchar = channel->read_buf->str;
1596 lastchar = channel->read_buf->str + channel->read_buf->len;
1598 while (nextchar < lastchar)
1602 val_char = g_utf8_get_char_validated (nextchar, lastchar - nextchar);
1607 /* stop, leave partial character in buffer */
1608 lastchar = nextchar;
1611 if (oldlen < channel->encoded_read_buf->len)
1612 status = G_IO_STATUS_NORMAL;
1615 g_set_error_literal (err, G_CONVERT_ERROR,
1616 G_CONVERT_ERROR_ILLEGAL_SEQUENCE,
1617 _("Invalid byte sequence in conversion input"));
1618 status = G_IO_STATUS_ERROR;
1620 lastchar = nextchar;
1623 nextchar = g_utf8_next_char (nextchar);
1628 if (lastchar > channel->read_buf->str)
1630 gint copy_len = lastchar - channel->read_buf->str;
1632 g_string_append_len (channel->encoded_read_buf, channel->read_buf->str,
1634 g_string_erase (channel->read_buf, 0, copy_len);
1642 * g_io_channel_read_line:
1643 * @channel: a #GIOChannel
1644 * @str_return: The line read from the #GIOChannel, including the
1645 * line terminator. This data should be freed with g_free()
1646 * when no longer needed. This is a nul-terminated string.
1647 * If a @length of zero is returned, this will be %NULL instead.
1648 * @length: location to store length of the read data, or %NULL
1649 * @terminator_pos: location to store position of line terminator, or %NULL
1650 * @error: A location to return an error of type #GConvertError
1651 * or #GIOChannelError
1653 * Reads a line, including the terminating character(s),
1654 * from a #GIOChannel into a newly-allocated string.
1655 * @str_return will contain allocated memory if the return
1656 * is %G_IO_STATUS_NORMAL.
1658 * Return value: the status of the operation.
1661 g_io_channel_read_line (GIOChannel *channel,
1664 gsize *terminator_pos,
1670 g_return_val_if_fail (channel != NULL, G_IO_STATUS_ERROR);
1671 g_return_val_if_fail (str_return != NULL, G_IO_STATUS_ERROR);
1672 g_return_val_if_fail ((error == NULL) || (*error == NULL),
1674 g_return_val_if_fail (channel->is_readable, G_IO_STATUS_ERROR);
1676 status = g_io_channel_read_line_backend (channel, &got_length, terminator_pos, error);
1679 *length = got_length;
1681 if (status == G_IO_STATUS_NORMAL)
1683 g_assert (USE_BUF (channel));
1684 *str_return = g_strndup (USE_BUF (channel)->str, got_length);
1685 g_string_erase (USE_BUF (channel), 0, got_length);
1694 * g_io_channel_read_line_string:
1695 * @channel: a #GIOChannel
1696 * @buffer: a #GString into which the line will be written.
1697 * If @buffer already contains data, the old data will
1699 * @terminator_pos: location to store position of line terminator, or %NULL
1700 * @error: a location to store an error of type #GConvertError
1701 * or #GIOChannelError
1703 * Reads a line from a #GIOChannel, using a #GString as a buffer.
1705 * Return value: the status of the operation.
1708 g_io_channel_read_line_string (GIOChannel *channel,
1710 gsize *terminator_pos,
1716 g_return_val_if_fail (channel != NULL, G_IO_STATUS_ERROR);
1717 g_return_val_if_fail (buffer != NULL, G_IO_STATUS_ERROR);
1718 g_return_val_if_fail ((error == NULL) || (*error == NULL),
1720 g_return_val_if_fail (channel->is_readable, G_IO_STATUS_ERROR);
1722 if (buffer->len > 0)
1723 g_string_truncate (buffer, 0); /* clear out the buffer */
1725 status = g_io_channel_read_line_backend (channel, &length, terminator_pos, error);
1727 if (status == G_IO_STATUS_NORMAL)
1729 g_assert (USE_BUF (channel));
1730 g_string_append_len (buffer, USE_BUF (channel)->str, length);
1731 g_string_erase (USE_BUF (channel), 0, length);
1739 g_io_channel_read_line_backend (GIOChannel *channel,
1741 gsize *terminator_pos,
1745 gsize checked_to, line_term_len, line_length, got_term_len;
1746 gboolean first_time = TRUE;
1748 if (!channel->use_buffer)
1750 /* Can't do a raw read in read_line */
1751 g_set_error_literal (error, G_CONVERT_ERROR, G_CONVERT_ERROR_FAILED,
1752 _("Can't do a raw read in g_io_channel_read_line_string"));
1753 return G_IO_STATUS_ERROR;
1756 status = G_IO_STATUS_NORMAL;
1758 if (channel->line_term)
1759 line_term_len = channel->line_term_len;
1762 /* This value used for setting checked_to, it's the longest of the four
1763 * we autodetect for.
1770 gchar *nextchar, *lastchar;
1773 if (!first_time || (BUF_LEN (USE_BUF (channel)) == 0))
1776 status = g_io_channel_fill_buffer (channel, error);
1779 case G_IO_STATUS_NORMAL:
1780 if (BUF_LEN (USE_BUF (channel)) == 0)
1781 /* Can happen when using conversion and only read
1782 * part of a character
1789 case G_IO_STATUS_EOF:
1790 if (BUF_LEN (USE_BUF (channel)) == 0)
1795 if (channel->encoding && channel->read_buf->len != 0)
1797 g_set_error_literal (error, G_CONVERT_ERROR,
1798 G_CONVERT_ERROR_PARTIAL_INPUT,
1799 _("Leftover unconverted data in "
1801 return G_IO_STATUS_ERROR;
1804 return G_IO_STATUS_EOF;
1814 g_assert (BUF_LEN (USE_BUF (channel)) != 0);
1816 use_buf = USE_BUF (channel); /* The buffer has been created by this point */
1820 lastchar = use_buf->str + use_buf->len;
1822 for (nextchar = use_buf->str + checked_to; nextchar < lastchar;
1823 channel->encoding ? nextchar = g_utf8_next_char (nextchar) : nextchar++)
1825 if (channel->line_term)
1827 if (memcmp (channel->line_term, nextchar, line_term_len) == 0)
1829 line_length = nextchar - use_buf->str;
1830 got_term_len = line_term_len;
1834 else /* auto detect */
1838 case '\n': /* unix */
1839 line_length = nextchar - use_buf->str;
1842 case '\r': /* Warning: do not use with sockets */
1843 line_length = nextchar - use_buf->str;
1844 if ((nextchar == lastchar - 1) && (status != G_IO_STATUS_EOF)
1845 && (lastchar == use_buf->str + use_buf->len))
1846 goto read_again; /* Try to read more data */
1847 if ((nextchar < lastchar - 1) && (*(nextchar + 1) == '\n')) /* dos */
1852 case '\xe2': /* Unicode paragraph separator */
1853 if (strncmp ("\xe2\x80\xa9", nextchar, 3) == 0)
1855 line_length = nextchar - use_buf->str;
1860 case '\0': /* Embeded null in input */
1861 line_length = nextchar - use_buf->str;
1864 default: /* no match */
1870 /* If encoding != NULL, valid UTF-8, didn't overshoot */
1871 g_assert (nextchar == lastchar);
1875 if (status == G_IO_STATUS_EOF)
1877 if (channel->encoding && channel->read_buf->len > 0)
1879 g_set_error_literal (error, G_CONVERT_ERROR, G_CONVERT_ERROR_PARTIAL_INPUT,
1880 _("Channel terminates in a partial character"));
1881 return G_IO_STATUS_ERROR;
1883 line_length = use_buf->len;
1888 if (use_buf->len > line_term_len - 1)
1889 checked_to = use_buf->len - (line_term_len - 1);
1897 *terminator_pos = line_length;
1900 *length = line_length + got_term_len;
1902 return G_IO_STATUS_NORMAL;
1906 * g_io_channel_read_to_end:
1907 * @channel: a #GIOChannel
1908 * @str_return: Location to store a pointer to a string holding
1909 * the remaining data in the #GIOChannel. This data should
1910 * be freed with g_free() when no longer needed. This
1911 * data is terminated by an extra nul character, but there
1912 * may be other nuls in the intervening data.
1913 * @length: location to store length of the data
1914 * @error: location to return an error of type #GConvertError
1915 * or #GIOChannelError
1917 * Reads all the remaining data from the file.
1919 * Return value: %G_IO_STATUS_NORMAL on success.
1920 * This function never returns %G_IO_STATUS_EOF.
1923 g_io_channel_read_to_end (GIOChannel *channel,
1930 g_return_val_if_fail (channel != NULL, G_IO_STATUS_ERROR);
1931 g_return_val_if_fail ((error == NULL) || (*error == NULL),
1933 g_return_val_if_fail (channel->is_readable, G_IO_STATUS_ERROR);
1940 if (!channel->use_buffer)
1942 g_set_error_literal (error, G_CONVERT_ERROR, G_CONVERT_ERROR_FAILED,
1943 _("Can't do a raw read in g_io_channel_read_to_end"));
1944 return G_IO_STATUS_ERROR;
1948 status = g_io_channel_fill_buffer (channel, error);
1949 while (status == G_IO_STATUS_NORMAL);
1951 if (status != G_IO_STATUS_EOF)
1954 if (channel->encoding && channel->read_buf->len > 0)
1956 g_set_error_literal (error, G_CONVERT_ERROR, G_CONVERT_ERROR_PARTIAL_INPUT,
1957 _("Channel terminates in a partial character"));
1958 return G_IO_STATUS_ERROR;
1961 if (USE_BUF (channel) == NULL)
1963 /* length is already set to zero */
1965 *str_return = g_strdup ("");
1970 *length = USE_BUF (channel)->len;
1973 *str_return = g_string_free (USE_BUF (channel), FALSE);
1975 g_string_free (USE_BUF (channel), TRUE);
1977 if (channel->encoding)
1978 channel->encoded_read_buf = NULL;
1980 channel->read_buf = NULL;
1983 return G_IO_STATUS_NORMAL;
1987 * g_io_channel_read_chars:
1988 * @channel: a #GIOChannel
1989 * @buf: a buffer to read data into
1990 * @count: the size of the buffer. Note that the buffer may not be
1991 * complelely filled even if there is data in the buffer if the
1992 * remaining data is not a complete character.
1993 * @bytes_read: (allow-none): The number of bytes read. This may be
1994 * zero even on success if count < 6 and the channel's encoding
1995 * is non-%NULL. This indicates that the next UTF-8 character is
1996 * too wide for the buffer.
1997 * @error: a location to return an error of type #GConvertError
1998 * or #GIOChannelError.
2000 * Replacement for g_io_channel_read() with the new API.
2002 * Return value: the status of the operation.
2005 g_io_channel_read_chars (GIOChannel *channel,
2014 g_return_val_if_fail (channel != NULL, G_IO_STATUS_ERROR);
2015 g_return_val_if_fail ((error == NULL) || (*error == NULL), G_IO_STATUS_ERROR);
2016 g_return_val_if_fail (channel->is_readable, G_IO_STATUS_ERROR);
2022 return G_IO_STATUS_NORMAL;
2024 g_return_val_if_fail (buf != NULL, G_IO_STATUS_ERROR);
2026 if (!channel->use_buffer)
2030 g_assert (!channel->read_buf || channel->read_buf->len == 0);
2032 status = channel->funcs->io_read (channel, buf, count, &tmp_bytes, error);
2035 *bytes_read = tmp_bytes;
2040 status = G_IO_STATUS_NORMAL;
2042 while (BUF_LEN (USE_BUF (channel)) < count && status == G_IO_STATUS_NORMAL)
2043 status = g_io_channel_fill_buffer (channel, error);
2045 /* Only return an error if we have no data */
2047 if (BUF_LEN (USE_BUF (channel)) == 0)
2049 g_assert (status != G_IO_STATUS_NORMAL);
2051 if (status == G_IO_STATUS_EOF && channel->encoding
2052 && BUF_LEN (channel->read_buf) > 0)
2054 g_set_error_literal (error, G_CONVERT_ERROR,
2055 G_CONVERT_ERROR_PARTIAL_INPUT,
2056 _("Leftover unconverted data in read buffer"));
2057 status = G_IO_STATUS_ERROR;
2066 if (status == G_IO_STATUS_ERROR)
2067 g_clear_error (error);
2069 got_bytes = MIN (count, BUF_LEN (USE_BUF (channel)));
2071 g_assert (got_bytes > 0);
2073 if (channel->encoding)
2074 /* Don't validate for NULL encoding, binary safe */
2076 gchar *nextchar, *prevchar;
2078 g_assert (USE_BUF (channel) == channel->encoded_read_buf);
2080 nextchar = channel->encoded_read_buf->str;
2084 prevchar = nextchar;
2085 nextchar = g_utf8_next_char (nextchar);
2086 g_assert (nextchar != prevchar); /* Possible for *prevchar of -1 or -2 */
2088 while (nextchar < channel->encoded_read_buf->str + got_bytes);
2090 if (nextchar > channel->encoded_read_buf->str + got_bytes)
2091 got_bytes = prevchar - channel->encoded_read_buf->str;
2093 g_assert (got_bytes > 0 || count < 6);
2096 memcpy (buf, USE_BUF (channel)->str, got_bytes);
2097 g_string_erase (USE_BUF (channel), 0, got_bytes);
2100 *bytes_read = got_bytes;
2102 return G_IO_STATUS_NORMAL;
2106 * g_io_channel_read_unichar:
2107 * @channel: a #GIOChannel
2108 * @thechar: a location to return a character
2109 * @error: a location to return an error of type #GConvertError
2110 * or #GIOChannelError
2112 * Reads a Unicode character from @channel.
2113 * This function cannot be called on a channel with %NULL encoding.
2115 * Return value: a #GIOStatus
2118 g_io_channel_read_unichar (GIOChannel *channel,
2122 GIOStatus status = G_IO_STATUS_NORMAL;
2124 g_return_val_if_fail (channel != NULL, G_IO_STATUS_ERROR);
2125 g_return_val_if_fail (channel->encoding != NULL, G_IO_STATUS_ERROR);
2126 g_return_val_if_fail ((error == NULL) || (*error == NULL),
2128 g_return_val_if_fail (channel->is_readable, G_IO_STATUS_ERROR);
2130 while (BUF_LEN (channel->encoded_read_buf) == 0 && status == G_IO_STATUS_NORMAL)
2131 status = g_io_channel_fill_buffer (channel, error);
2133 /* Only return an error if we have no data */
2135 if (BUF_LEN (USE_BUF (channel)) == 0)
2137 g_assert (status != G_IO_STATUS_NORMAL);
2139 if (status == G_IO_STATUS_EOF && BUF_LEN (channel->read_buf) > 0)
2141 g_set_error_literal (error, G_CONVERT_ERROR,
2142 G_CONVERT_ERROR_PARTIAL_INPUT,
2143 _("Leftover unconverted data in read buffer"));
2144 status = G_IO_STATUS_ERROR;
2148 *thechar = (gunichar) -1;
2153 if (status == G_IO_STATUS_ERROR)
2154 g_clear_error (error);
2157 *thechar = g_utf8_get_char (channel->encoded_read_buf->str);
2159 g_string_erase (channel->encoded_read_buf, 0,
2160 g_utf8_next_char (channel->encoded_read_buf->str)
2161 - channel->encoded_read_buf->str);
2163 return G_IO_STATUS_NORMAL;
2167 * g_io_channel_write_chars:
2168 * @channel: a #GIOChannel
2169 * @buf: a buffer to write data from
2170 * @count: the size of the buffer. If -1, the buffer
2171 * is taken to be a nul-terminated string.
2172 * @bytes_written: The number of bytes written. This can be nonzero
2173 * even if the return value is not %G_IO_STATUS_NORMAL.
2174 * If the return value is %G_IO_STATUS_NORMAL and the
2175 * channel is blocking, this will always be equal
2176 * to @count if @count >= 0.
2177 * @error: a location to return an error of type #GConvertError
2178 * or #GIOChannelError
2180 * Replacement for g_io_channel_write() with the new API.
2182 * On seekable channels with encodings other than %NULL or UTF-8, generic
2183 * mixing of reading and writing is not allowed. A call to g_io_channel_write_chars ()
2184 * may only be made on a channel from which data has been read in the
2185 * cases described in the documentation for g_io_channel_set_encoding ().
2187 * Return value: the status of the operation.
2190 g_io_channel_write_chars (GIOChannel *channel,
2193 gsize *bytes_written,
2197 gssize wrote_bytes = 0;
2199 g_return_val_if_fail (channel != NULL, G_IO_STATUS_ERROR);
2200 g_return_val_if_fail ((error == NULL) || (*error == NULL),
2202 g_return_val_if_fail (channel->is_writeable, G_IO_STATUS_ERROR);
2204 if ((count < 0) && buf)
2205 count = strlen (buf);
2211 return G_IO_STATUS_NORMAL;
2214 g_return_val_if_fail (buf != NULL, G_IO_STATUS_ERROR);
2215 g_return_val_if_fail (count > 0, G_IO_STATUS_ERROR);
2217 /* Raw write case */
2219 if (!channel->use_buffer)
2223 g_assert (!channel->write_buf || channel->write_buf->len == 0);
2224 g_assert (channel->partial_write_buf[0] == '\0');
2226 status = channel->funcs->io_write (channel, buf, count, &tmp_bytes, error);
2229 *bytes_written = tmp_bytes;
2236 if (channel->is_seekable && (( BUF_LEN (channel->read_buf) > 0)
2237 || (BUF_LEN (channel->encoded_read_buf) > 0)))
2239 if (channel->do_encode && BUF_LEN (channel->encoded_read_buf) > 0)
2241 g_warning("Mixed reading and writing not allowed on encoded files");
2242 return G_IO_STATUS_ERROR;
2244 status = g_io_channel_seek_position (channel, 0, G_SEEK_CUR, error);
2245 if (status != G_IO_STATUS_NORMAL)
2253 if (!channel->write_buf)
2254 channel->write_buf = g_string_sized_new (channel->buf_size);
2256 while (wrote_bytes < count)
2260 /* If the buffer is full, try a write immediately. In
2261 * the nonblocking case, this prevents the user from
2262 * writing just a little bit to the buffer every time
2263 * and never receiving an EAGAIN.
2266 if (channel->write_buf->len >= channel->buf_size - MAX_CHAR_SIZE)
2268 gsize did_write = 0, this_time;
2272 status = channel->funcs->io_write (channel, channel->write_buf->str
2273 + did_write, channel->write_buf->len
2274 - did_write, &this_time, error);
2275 did_write += this_time;
2277 while (status == G_IO_STATUS_NORMAL &&
2278 did_write < MIN (channel->write_buf->len, MAX_CHAR_SIZE));
2280 g_string_erase (channel->write_buf, 0, did_write);
2282 if (status != G_IO_STATUS_NORMAL)
2284 if (status == G_IO_STATUS_AGAIN && wrote_bytes > 0)
2285 status = G_IO_STATUS_NORMAL;
2287 *bytes_written = wrote_bytes;
2292 space_in_buf = MAX (channel->buf_size, channel->write_buf->allocated_len - 1)
2293 - channel->write_buf->len; /* 1 for NULL */
2295 /* This is only true because g_io_channel_set_buffer_size ()
2296 * ensures that channel->buf_size >= MAX_CHAR_SIZE.
2298 g_assert (space_in_buf >= MAX_CHAR_SIZE);
2300 if (!channel->encoding)
2302 gssize write_this = MIN (space_in_buf, count - wrote_bytes);
2304 g_string_append_len (channel->write_buf, buf, write_this);
2306 wrote_bytes += write_this;
2310 const gchar *from_buf;
2311 gsize from_buf_len, from_buf_old_len, left_len;
2315 if (channel->partial_write_buf[0] != '\0')
2317 g_assert (wrote_bytes == 0);
2319 from_buf = channel->partial_write_buf;
2320 from_buf_old_len = strlen (channel->partial_write_buf);
2321 g_assert (from_buf_old_len > 0);
2322 from_buf_len = MIN (6, from_buf_old_len + count);
2324 memcpy (channel->partial_write_buf + from_buf_old_len, buf,
2325 from_buf_len - from_buf_old_len);
2330 from_buf_len = count - wrote_bytes;
2331 from_buf_old_len = 0;
2336 if (!channel->do_encode) /* UTF-8 encoding */
2338 const gchar *badchar;
2339 gsize try_len = MIN (from_buf_len, space_in_buf);
2341 /* UTF-8, just validate, emulate g_iconv */
2343 if (!g_utf8_validate (from_buf, try_len, &badchar))
2346 gsize incomplete_len = from_buf + try_len - badchar;
2348 left_len = from_buf + from_buf_len - badchar;
2350 try_char = g_utf8_get_char_validated (badchar, incomplete_len);
2355 g_assert (incomplete_len < 6);
2356 if (try_len == from_buf_len)
2368 g_warning ("Invalid UTF-8 passed to g_io_channel_write_chars().");
2369 /* FIXME bail here? */
2374 g_assert_not_reached ();
2376 errnum = 0; /* Don't confunse the compiler */
2383 left_len = from_buf_len - try_len;
2386 g_string_append_len (channel->write_buf, from_buf,
2387 from_buf_len - left_len);
2388 from_buf += from_buf_len - left_len;
2394 left_len = from_buf_len;
2395 g_string_set_size (channel->write_buf, channel->write_buf->len
2397 outbuf = channel->write_buf->str + channel->write_buf->len
2399 err = g_iconv (channel->write_cd, (gchar **) &from_buf, &left_len,
2400 &outbuf, &space_in_buf);
2402 g_string_truncate (channel->write_buf, channel->write_buf->len
2406 if (err == (gsize) -1)
2411 g_assert (left_len < 6);
2413 if (from_buf_old_len == 0)
2415 /* Not from partial_write_buf */
2417 memcpy (channel->partial_write_buf, from_buf, left_len);
2418 channel->partial_write_buf[left_len] = '\0';
2420 *bytes_written = count;
2421 return G_IO_STATUS_NORMAL;
2424 /* Working in partial_write_buf */
2426 if (left_len == from_buf_len)
2428 /* Didn't convert anything, must still have
2429 * less than a full character
2432 g_assert (count == from_buf_len - from_buf_old_len);
2434 channel->partial_write_buf[from_buf_len] = '\0';
2437 *bytes_written = count;
2439 return G_IO_STATUS_NORMAL;
2442 g_assert (from_buf_len - left_len >= from_buf_old_len);
2444 /* We converted all the old data. This is fine */
2448 if (from_buf_len == left_len)
2450 /* Nothing was written, add enough space for
2451 * at least one character.
2453 space_in_buf += MAX_CHAR_SIZE;
2458 g_set_error_literal (error, G_CONVERT_ERROR,
2459 G_CONVERT_ERROR_ILLEGAL_SEQUENCE,
2460 _("Invalid byte sequence in conversion input"));
2461 if (from_buf_old_len > 0 && from_buf_len == left_len)
2462 g_warning ("Illegal sequence due to partial character "
2463 "at the end of a previous write.\n");
2465 wrote_bytes += from_buf_len - left_len - from_buf_old_len;
2467 *bytes_written = wrote_bytes;
2468 channel->partial_write_buf[0] = '\0';
2469 return G_IO_STATUS_ERROR;
2471 g_set_error (error, G_CONVERT_ERROR, G_CONVERT_ERROR_FAILED,
2472 _("Error during conversion: %s"), g_strerror (errnum));
2473 if (from_buf_len >= left_len + from_buf_old_len)
2474 wrote_bytes += from_buf_len - left_len - from_buf_old_len;
2476 *bytes_written = wrote_bytes;
2477 channel->partial_write_buf[0] = '\0';
2478 return G_IO_STATUS_ERROR;
2482 g_assert (from_buf_len - left_len >= from_buf_old_len);
2484 wrote_bytes += from_buf_len - left_len - from_buf_old_len;
2486 if (from_buf_old_len > 0)
2488 /* We were working in partial_write_buf */
2490 buf += from_buf_len - left_len - from_buf_old_len;
2491 channel->partial_write_buf[0] = '\0';
2499 *bytes_written = count;
2501 return G_IO_STATUS_NORMAL;
2505 * g_io_channel_write_unichar:
2506 * @channel: a #GIOChannel
2507 * @thechar: a character
2508 * @error: location to return an error of type #GConvertError
2509 * or #GIOChannelError
2511 * Writes a Unicode character to @channel.
2512 * This function cannot be called on a channel with %NULL encoding.
2514 * Return value: a #GIOStatus
2517 g_io_channel_write_unichar (GIOChannel *channel,
2522 gchar static_buf[6];
2523 gsize char_len, wrote_len;
2525 g_return_val_if_fail (channel != NULL, G_IO_STATUS_ERROR);
2526 g_return_val_if_fail (channel->encoding != NULL, G_IO_STATUS_ERROR);
2527 g_return_val_if_fail ((error == NULL) || (*error == NULL),
2529 g_return_val_if_fail (channel->is_writeable, G_IO_STATUS_ERROR);
2531 char_len = g_unichar_to_utf8 (thechar, static_buf);
2533 if (channel->partial_write_buf[0] != '\0')
2535 g_warning ("Partial charater written before writing unichar.\n");
2536 channel->partial_write_buf[0] = '\0';
2539 status = g_io_channel_write_chars (channel, static_buf,
2540 char_len, &wrote_len, error);
2542 /* We validate UTF-8, so we can't get a partial write */
2544 g_assert (wrote_len == char_len || status != G_IO_STATUS_NORMAL);
2550 * g_io_channel_error_quark:
2552 * Return value: the quark used as %G_IO_CHANNEL_ERROR
2555 * G_IO_CHANNEL_ERROR:
2557 * Error domain for #GIOChannel operations. Errors in this domain will
2558 * be from the #GIOChannelError enumeration. See #GError for
2559 * information on error domains.
2563 * @G_IO_CHANNEL_ERROR_FBIG: File too large.
2564 * @G_IO_CHANNEL_ERROR_INVAL: Invalid argument.
2565 * @G_IO_CHANNEL_ERROR_IO: IO error.
2566 * @G_IO_CHANNEL_ERROR_ISDIR: File is a directory.
2567 * @G_IO_CHANNEL_ERROR_NOSPC: No space left on device.
2568 * @G_IO_CHANNEL_ERROR_NXIO: No such device or address.
2569 * @G_IO_CHANNEL_ERROR_OVERFLOW: Value too large for defined datatype.
2570 * @G_IO_CHANNEL_ERROR_PIPE: Broken pipe.
2571 * @G_IO_CHANNEL_ERROR_FAILED: Some other error.
2573 * Error codes returned by #GIOChannel operations.
2576 g_io_channel_error_quark (void)
2578 return g_quark_from_static_string ("g-io-channel-error-quark");