123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- #ifdef HAVE_CONFIG_H
- # include <config.h>
- #endif
- #if HAVE_STDDEF_H
- # include <stddef.h>
- #endif
- #include <stdio.h>
- #if HAVE_STRING_H
- # include <string.h>
- #else
- # include <strings.h>
- #endif
- #include <errno.h>
- #ifndef errno
- extern int errno;
- #endif
- #if HAVE_ICONV
- # include <iconv.h>
- #endif
- #include <error.h>
- #if ENABLE_NLS
- # include <libintl.h>
- # define _(Text) gettext (Text)
- #else
- # define _(Text) Text
- #endif
- #include "unicodeio.h"
- static int
- utf8_wctomb (unsigned char *r, unsigned int wc)
- {
- int count;
- if (wc < 0x80)
- count = 1;
- else if (wc < 0x800)
- count = 2;
- else if (wc < 0x10000)
- count = 3;
- else if (wc < 0x200000)
- count = 4;
- else if (wc < 0x4000000)
- count = 5;
- else if (wc <= 0x7fffffff)
- count = 6;
- else
- return -1;
- switch (count)
- {
-
- case 6: r[5] = 0x80 | (wc & 0x3f); wc = wc >> 6; wc |= 0x4000000;
- case 5: r[4] = 0x80 | (wc & 0x3f); wc = wc >> 6; wc |= 0x200000;
- case 4: r[3] = 0x80 | (wc & 0x3f); wc = wc >> 6; wc |= 0x10000;
- case 3: r[2] = 0x80 | (wc & 0x3f); wc = wc >> 6; wc |= 0x800;
- case 2: r[1] = 0x80 | (wc & 0x3f); wc = wc >> 6; wc |= 0xc0;
- case 1: r[0] = wc;
- }
- return count;
- }
- #define UTF8_NAME "UTF-8"
- void
- unicode_to_mb (unsigned int code,
- void (*callback) PARAMS((const char *buf, size_t buflen,
- void *callback_arg)),
- void *callback_arg)
- {
- static int initialized;
- static int is_utf8;
- #if HAVE_ICONV
- static iconv_t utf8_to_local;
- #endif
- char inbuf[6];
- int count;
- if (!initialized)
- {
- extern const char *locale_charset PARAMS ((void));
- const char *charset = locale_charset ();
- is_utf8 = !strcmp (charset, UTF8_NAME);
- #if HAVE_ICONV
- if (!is_utf8)
- {
- utf8_to_local = iconv_open (charset, UTF8_NAME);
- if (utf8_to_local == (iconv_t)(-1))
- {
-
- utf8_to_local = iconv_open ("ASCII", UTF8_NAME);
- if (utf8_to_local == (iconv_t)(-1))
- error (1, 0,
- _("cannot convert U+%04X to local character set: iconv function not usable"),
- code);
- }
- }
- #endif
- initialized = 1;
- }
-
- count = utf8_wctomb ((unsigned char *) inbuf, code);
- if (count < 0)
- error (1, 0, _("U+%04X: character out of range"), code);
- if (is_utf8)
- {
- callback (inbuf, count, callback_arg);
- }
- else
- {
- #if HAVE_ICONV
- char outbuf[25];
- const char *inptr;
- size_t inbytesleft;
- char *outptr;
- size_t outbytesleft;
- size_t res;
- inptr = inbuf;
- inbytesleft = count;
- outptr = outbuf;
- outbytesleft = sizeof (outbuf);
-
- res = iconv (utf8_to_local,
- (ICONV_CONST char **)&inptr, &inbytesleft,
- &outptr, &outbytesleft);
- if (inbytesleft > 0 || res == (size_t)(-1)
-
- # if !defined _LIBICONV_VERSION && (defined sgi || defined __sgi)
- || (res > 0 && code != 0 && outptr - outbuf == 1 && *outbuf == '\0')
- # endif
- )
- error (1, res == (size_t)(-1) ? errno : 0,
- _("cannot convert U+%04X to local character set"), code);
-
- # if defined _LIBICONV_VERSION \
- || !((__GLIBC__ - 0 == 2 && __GLIBC_MINOR__ - 0 <= 1) || defined __sun)
-
- res = iconv (utf8_to_local, NULL, NULL, &outptr, &outbytesleft);
- if (res == (size_t)(-1))
- error (1, errno, _("cannot convert U+%04X to local character set"),
- code);
- # endif
- callback (outbuf, outptr - outbuf, callback_arg);
- #else
- error (1, 0,
- _("cannot convert U+%04X to local character set: iconv function not available"),
- code);
- #endif
- }
- }
- static void
- fprintf_callback (const char *buf, size_t buflen, void *callback_arg)
- {
- FILE *stream = (FILE *) callback_arg;
- fwrite (buf, 1, buflen, stream);
- }
- void
- print_unicode_char (FILE *stream, unsigned int code)
- {
- unicode_to_mb (code, fprintf_callback, stream);
- }
|