1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 2010, 2011, 2012 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program 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
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19 #include "u8-istream.h"
33 #include "libpspp/assertion.h"
34 #include "libpspp/cast.h"
35 #include "libpspp/compiler.h"
36 #include "libpspp/encoding-guesser.h"
37 #include "libpspp/i18n.h"
39 #include "gl/c-strcase.h"
40 #include "gl/localcharset.h"
41 #include "gl/minmax.h"
45 S_AUTO, /* Stream encoding not yet known. */
46 S_UTF8, /* Stream encoding is known to be UTF-8. */
47 S_CONVERT /* Stream encoding is known but not UTF-8. */
54 enum u8_istream_state state;
64 static ssize_t fill_buffer (struct u8_istream *);
66 /* Opens FILENAME, which is encoded in FROMCODE, for reading as an UTF-8
67 stream, passing FLAGS to the open() function. Returns a new u8_istream if
68 successful, otherwise returns NULL and sets errno to an appropriate value.
70 The accepted forms for FROMCODE are listed at the top of
71 encoding-guesser.h. */
73 u8_istream_for_file (const char *fromcode, const char *filename, int flags)
75 struct u8_istream *is;
78 assert (!(flags & O_CREAT));
80 fd = open (filename, flags);
84 is = u8_istream_for_fd (fromcode, fd);
87 int save_errno = errno;
95 /* Creates and returns a new u8_istream that reads its input from FD. Returns
96 a new u8_istream if successful, otherwise returns NULL and sets errno to an
99 The accepted forms for FROMCODE are listed at the top of
100 encoding-guesser.h. */
102 u8_istream_for_fd (const char *fromcode, int fd)
104 struct u8_istream *is;
105 const char *encoding;
107 is = malloc (sizeof *is);
112 is->converter = (iconv_t) -1;
113 is->buffer = malloc (U8_ISTREAM_BUFFER_SIZE);
114 if (is->buffer == NULL)
116 is->head = is->buffer;
120 if (fill_buffer (is) < 0)
123 encoding = encoding_guess_head_encoding (fromcode, is->buffer, is->length);
124 if (is_encoding_utf8 (encoding))
128 if (encoding_guess_encoding_is_auto (fromcode)
129 && !strcmp (encoding, "ASCII"))
132 is->state = S_CONVERT;
134 is->converter = iconv_open ("UTF-8",
135 encoding_guess_parse_encoding (fromcode));
136 if (is->converter == (iconv_t) -1)
143 u8_istream_free (is);
147 /* Closes IS and its underlying file descriptor and frees all associated
148 resources. Returns the return value from close(). */
150 u8_istream_close (struct u8_istream *is)
155 u8_istream_free (is);
161 /* Frees IS and associated resources, but does not close the underlying file
162 descriptor. (Thus, the client must close the file descriptor when it is no
165 u8_istream_free (struct u8_istream *is)
169 if (is->converter != (iconv_t) -1)
170 iconv_close (is->converter);
177 substitute_invalid_input_byte (struct u8_istream *is)
179 assert (is->outlen == 0);
182 is->outlen = u8_uctomb (CHAR_CAST (uint8_t *, is->outbuf),
183 0xfffd, sizeof is->outbuf);
187 fill_buffer (struct u8_istream *is)
191 /* Move any unused bytes to the beginning of the input buffer. */
192 if (is->length > 0 && is->buffer != is->head)
193 memmove (is->buffer, is->head, is->length);
194 is->head = is->buffer;
196 /* Read more input. */
199 n = read (is->fd, is->buffer + is->length,
200 U8_ISTREAM_BUFFER_SIZE - is->length);
202 while (n < 0 && errno == EINTR);
209 read_auto (struct u8_istream *is, char *buffer, size_t size)
211 size_t original_size = size;
220 n_ascii = encoding_guess_count_ascii (is->head,
221 MIN (is->length, size));
223 memcpy (buffer, is->head, n_ascii);
228 is->length -= n_ascii;
236 retval = fill_buffer (is);
243 /* is->head points to a byte that isn't a printable ASCII character.
244 Fill up the buffer and check for UTF-8. */
246 is->state = (encoding_guess_tail_is_utf8 (is->head, is->length)
247 ? S_UTF8 : S_CONVERT);
248 if (size == original_size)
249 return u8_istream_read (is, buffer, size);
253 return original_size - size;
257 convert_iconv (iconv_t converter,
258 char **inbufp, size_t *inbytesleft,
259 char **outbufp, size_t *outbytesleft)
261 size_t n = iconv (converter, (ICONV_CONST char **) inbufp, inbytesleft,
262 outbufp, outbytesleft);
263 return n == SIZE_MAX ? errno : 0;
267 convert_utf8 (iconv_t converter UNUSED,
268 char **inbufp, size_t *inbytesleft,
269 char **outbufp, size_t *outbytesleft)
271 const uint8_t *in = CHAR_CAST (const uint8_t *, *inbufp);
272 size_t n = MIN (*inbytesleft, *outbytesleft);
283 error = ofs < *inbytesleft ? E2BIG : 0;
287 mblen = u8_mbtouc (&uc, in + ofs, n - ofs);
290 int retval = u8_mbtoucr (&uc, in + ofs, *inbytesleft - ofs);
293 /* There's an actual U+FFFD in the input stream. Carry on. */
297 error = (retval == -1 ? EILSEQ
298 : retval == -2 ? EINVAL
309 memcpy (*outbufp, *inbufp, ofs);
313 *outbytesleft -= ofs;
320 read_convert (struct u8_istream *is,
321 int (*convert) (iconv_t converter,
322 char **inbufp, size_t *inbytesleft,
323 char **outbufp, size_t *outbytesleft),
324 char *buffer, size_t size)
326 size_t original_size = size;
334 size_t n = MIN (size, is->outlen);
336 memcpy (buffer, is->outbuf, n);
339 memmove (is->outbuf, is->outbuf + n, is->outlen);
350 int error = convert (is->converter,
351 &is->head, &is->length,
359 /* Converted all of the input into output, possibly with space
360 for output left over.
366 substitute_invalid_input_byte (is);
370 /* Incomplete byte sequence at end of input. Read more
375 /* A real error of some kind (ENOMEM?). */
379 /* Ran out of room for output.
380 Convert into outbuf and copy from there instead. */
382 char *outptr = is->outbuf;
383 size_t outleft = sizeof is->outbuf;
385 error = convert (is->converter,
386 &is->head, &is->length,
388 is->outlen = outptr - is->outbuf;
395 substitute_invalid_input_byte (is);
403 /* A real error of some kind (ENOMEM?). */
410 assert (is->length <= MB_LEN_MAX);
411 n_read = fill_buffer (is);
414 if (original_size != size)
416 /* We produced some output so don't report EOF or error yet. */
419 else if (n_read == 0 && is->length != 0)
421 /* Incomplete byte sequence at end of file. */
422 substitute_invalid_input_byte (is);
426 /* Propagate end-of-file or error to caller. */
432 return original_size - size;
435 /* Reads up to SIZE bytes of UTF-8 text from IS into BUFFER. Returns the
436 number of bytes read if successful, 0 at end of file, or -1 if an error
437 occurred before any data could be read. Upon error, sets errno to an
438 appropriate value. */
440 u8_istream_read (struct u8_istream *is, char *buffer, size_t size)
445 return read_convert (is, convert_iconv, buffer, size);
448 return read_auto (is, buffer, size);
451 return read_convert (is, convert_utf8, buffer, size);
457 /* Returns the file descriptor underlying IS. */
459 u8_istream_fileno (const struct u8_istream *is)
466 These functions are probably useful only for white-box testing. */
468 /* Returns true if the encoding of the file being read by IS is not yet
471 u8_istream_is_auto (const struct u8_istream *is)
473 return is->state == S_AUTO;
476 /* Returns true if the encoding of the file being read by IS has been
477 determined to be UTF-8. */
479 u8_istream_is_utf8 (const struct u8_istream *is)
481 return is->state == S_UTF8;