12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070 |
- /* Copyright (C) 2002 Manuel Novoa III
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, write to the Free
- * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- */
- /* ATTENTION! ATTENTION! ATTENTION! ATTENTION! ATTENTION!
- *
- * Besides uClibc, I'm using this code in my libc for elks, which is
- * a 16-bit environment with a fairly limited compiler. It would make
- * things much easier for me if this file isn't modified unnecessarily.
- * In particular, please put any new or replacement functions somewhere
- * else, and modify the makefile to use your version instead.
- * Thanks. Manuel
- *
- * ATTENTION! ATTENTION! ATTENTION! ATTENTION! ATTENTION! */
- /* May 23, 2002 Initial Notes:
- *
- * I'm still tweaking this stuff, but it passes the tests I've thrown
- * at it, and Erik needs it for the gcc port. The glibc extension
- * __wcsnrtombs() hasn't been tested, as I didn't find a test for it
- * in the glibc source. I also need to fix the behavior of
- * _wchar_utf8sntowcs() if the max number of wchars to convert is 0.
- *
- * UTF-8 -> wchar -> UTF-8 conversion tests on Markus Kuhn's UTF-8-demo.txt
- * file on my platform (x86) show about 5-10% faster conversion speed than
- * glibc with mbsrtowcs()/wcsrtombs() and almost twice as fast as glibc with
- * individual mbrtowc()/wcrtomb() calls.
- *
- * If 'DECODER' is defined, then _wchar_utf8sntowcs() will be compiled
- * as a fail-safe UTF-8 decoder appropriate for a terminal, etc. which
- * needs to deal gracefully with whatever is sent to it. In that mode,
- * it passes Markus Kuhn's UTF-8-test.txt stress test. I plan to add
- * an arg to force that behavior, so the interface will be changing.
- *
- * I need to fix the error checking for 16-bit wide chars. This isn't
- * an issue for uClibc, but may be for ELKS. I'm currently not sure
- * if I'll use 16-bit, 32-bit, or configureable wchars in ELKS.
- *
- * July 1, 2002
- *
- * Fixed _wchar_utf8sntowcs() for the max number of wchars == 0 case.
- * Fixed nul-char bug in btowc(), and another in __mbsnrtowcs() for 8-bit
- * locales.
- * Enabled building of a C/POSIX-locale-only version, so full locale support
- * no longer needs to be enabled.
- *
- * Nov 4, 2002
- *
- * Fixed a bug in _wchar_wcsntoutf8s(). Don't store wcs position if dst is NULL.
- * Also, introduce an awful hack into _wchar_wcsntoutf8s() and wcsrtombs() in
- * order to support %ls in printf. See comments below for details.
- * Change behaviour of wc<->mb functions when in the C locale. Now they do
- * a 1-1 map for the range 0x80-UCHAR_MAX. This is for backwards compatibility
- * and consistency with the stds requirements that a printf format string by
- * a valid multibyte string beginning and ending in it's initial shift state.
- *
- * Nov 5, 2002
- *
- * Forgot to change btowc and wctob when I changed the wc<->mb functions yesterday.
- *
- * Nov 7, 2002
- *
- * Add wcwidth and wcswidth, based on Markus Kuhn's wcwidth of 2002-05-08.
- * Added some size/speed optimizations and integrated it into my locale
- * framework. Minimally tested at the moment, but the stub C-locale
- * version (which most people would probably be using) should be fine.
- *
- * Manuel
- */
- #define _GNU_SOURCE
- #define _ISOC99_SOURCE
- #include <errno.h>
- #include <stddef.h>
- #include <limits.h>
- #include <stdint.h>
- #include <inttypes.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include <assert.h>
- #include <locale.h>
- #include <wchar.h>
- #ifdef __UCLIBC_HAS_LOCALE__
- #define ENCODING (__global_locale.encoding)
- #ifdef __UCLIBC_MJN3_ONLY__
- #warning implement __CTYPE_HAS_UTF_8_LOCALES!
- #endif
- #define __CTYPE_HAS_UTF_8_LOCALES
- #else
- #undef __CTYPE_HAS_8_BIT_LOCALES
- #undef __CTYPE_HAS_UTF_8_LOCALES
- #undef L__wchar_utf8sntowcs
- #undef L__wchar_wcsntoutf8s
- #endif
- #if WCHAR_MAX > 0xffffUL
- #define UTF_8_MAX_LEN 6
- #else
- #define UTF_8_MAX_LEN 3
- #endif
- /* #define KUHN */
- /* Implementation-specific work functions. */
- extern size_t _wchar_utf8sntowcs(wchar_t *__restrict pwc, size_t wn,
- const char **__restrict src, size_t n,
- mbstate_t *ps, int allow_continuation);
- extern size_t _wchar_wcsntoutf8s(char *__restrict s, size_t n,
- const wchar_t **__restrict src, size_t wn);
- /* glibc extensions. */
- extern size_t __mbsnrtowcs(wchar_t *__restrict dst,
- const char **__restrict src,
- size_t NMC, size_t len, mbstate_t *__restrict ps);
- extern size_t __wcsnrtombs(char *__restrict dst,
- const wchar_t **__restrict src,
- size_t NWC, size_t len, mbstate_t *__restrict ps);
- /**********************************************************************/
- #ifdef L_btowc
- wint_t btowc(int c)
- {
- #ifdef __CTYPE_HAS_8_BIT_LOCALES
- wchar_t wc;
- unsigned char buf[1];
- mbstate_t mbstate;
- if (c != EOF) {
- *buf = (unsigned char) c;
- mbstate.mask = 0; /* Initialize the mbstate. */
- if (mbrtowc(&wc, buf, 1, &mbstate) <= 1) {
- return wc;
- }
- }
- return WEOF;
- #else /* __CTYPE_HAS_8_BIT_LOCALES */
- #ifdef __CTYPE_HAS_UTF_8_LOCALES
- if (ENCODING == __ctype_encoding_utf8) {
- return (((unsigned int)c) < 0x80) ? c : WEOF;
- }
- #endif /* __CTYPE_HAS_UTF_8_LOCALES */
- #ifdef __UCLIBC_HAS_LOCALE__
- assert(ENCODING == __ctype_encoding_7_bit);
- #endif
- return (((unsigned int)c) <= UCHAR_MAX) ? c : WEOF;
- #endif /* __CTYPE_HAS_8_BIT_LOCALES */
- }
- #endif
- /**********************************************************************/
- #ifdef L_wctob
- /* Note: We completely ignore ps in all currently supported conversions. */
- int wctob(wint_t c)
- {
- #ifdef __CTYPE_HAS_8_BIT_LOCALES
- unsigned char buf[MB_LEN_MAX];
- return (wcrtomb(buf, c, NULL) == 1) ? *buf : EOF;
- #else /* __CTYPE_HAS_8_BIT_LOCALES */
- #ifdef __CTYPE_HAS_UTF_8_LOCALES
- if (ENCODING == __ctype_encoding_utf8) {
- return ((c >= 0) && (c < 0x80)) ? c : EOF;
- }
- #endif /* __CTYPE_HAS_UTF_8_LOCALES */
- #ifdef __UCLIBC_HAS_LOCALE__
- assert(ENCODING == __ctype_encoding_7_bit);
- #endif
- return ((c >= 0) && (c <= UCHAR_MAX)) ? c : EOF;
- #endif /* __CTYPE_HAS_8_BIT_LOCALES */
- }
- #endif
- /**********************************************************************/
- #ifdef L_mbsinit
- int mbsinit(const mbstate_t *ps)
- {
- return !ps || !ps->mask;
- }
- #endif
- /**********************************************************************/
- #ifdef L_mbrlen
- size_t mbrlen(const char *__restrict s, size_t n, mbstate_t *__restrict ps)
- __attribute__ ((__weak__, __alias__("__mbrlen")));
- size_t __mbrlen(const char *__restrict s, size_t n, mbstate_t *__restrict ps)
- {
- static mbstate_t mbstate; /* Rely on bss 0-init. */
- return mbrtowc(NULL, s, n, (ps != NULL) ? ps : &mbstate);
- }
- #endif
- /**********************************************************************/
- #ifdef L_mbrtowc
- size_t mbrtowc(wchar_t *__restrict pwc, const char *__restrict s,
- size_t n, mbstate_t *__restrict ps)
- {
- static mbstate_t mbstate; /* Rely on bss 0-init. */
- wchar_t wcbuf[1];
- const char *p;
- size_t r;
- char empty_string[1]; /* Avoid static to be fPIC friendly. */
- if (!ps) {
- ps = &mbstate;
- }
- if (!s) {
- pwc = (wchar_t *) s; /* NULL */
- empty_string[0] = 0; /* Init the empty string when necessary. */
- s = empty_string;
- n = 1;
- } else if (!n) {
- return (ps->mask && (ps->wc == 0xffffU)) /* TODO: change error code? */
- ? ((size_t) -1) : ((size_t) -2);
- }
- p = s;
- #ifdef __CTYPE_HAS_UTF_8_LOCALES
- /* Need to do this here since mbsrtowcs doesn't allow incompletes. */
- if (ENCODING == __ctype_encoding_utf8) {
- r = _wchar_utf8sntowcs(pwc, 1, &p, n, ps, 1);
- return (r == 1) ? (p-s) : r; /* Need to return 0 if nul char. */
- }
- #endif
- r = __mbsnrtowcs(wcbuf, &p, SIZE_MAX, 1, ps);
- if (((ssize_t) r) >= 0) {
- if (pwc) {
- *pwc = *wcbuf;
- }
- }
- return (size_t) r;
- }
- #endif
- /**********************************************************************/
- #ifdef L_wcrtomb
- /* Note: We completely ignore ps in all currently supported conversions. */
- /* TODO: Check for valid state anyway? */
- size_t wcrtomb(register char *__restrict s, wchar_t wc,
- mbstate_t *__restrict ps)
- {
- wchar_t wcbuf[2];
- const wchar_t *pwc;
- size_t r;
- char buf[MB_LEN_MAX];
- if (!s) {
- s = buf;
- wc = 0;
- }
- pwc = wcbuf;
- wcbuf[0] = wc;
- wcbuf[1] = 0;
- r = __wcsnrtombs(s, &pwc, SIZE_MAX, MB_LEN_MAX, ps);
- return (r != 0) ? r : 1;
- }
- #endif
- /**********************************************************************/
- #ifdef L_mbsrtowcs
- size_t mbsrtowcs(wchar_t *__restrict dst, const char **__restrict src,
- size_t len, mbstate_t *__restrict ps)
- {
- static mbstate_t mbstate; /* Rely on bss 0-init. */
- return __mbsnrtowcs(dst, src, SIZE_MAX, len,
- ((ps != NULL) ? ps : &mbstate));
- }
- #endif
- /**********************************************************************/
- #ifdef L_wcsrtombs
- /* Note: We completely ignore ps in all currently supported conversions.
- * TODO: Check for valid state anyway? */
- size_t wcsrtombs(char *__restrict dst, const wchar_t **__restrict src,
- size_t len, mbstate_t *__restrict ps)
- {
- return __wcsnrtombs(dst, src, SIZE_MAX, len, ps);
- }
- #endif
- /**********************************************************************/
- #ifdef L__wchar_utf8sntowcs
- /* Define DECODER to generate a UTF-8 decoder which passes Markus Kuhn's
- * UTF-8-test.txt strss test.
- */
- /* #define DECODER */
- #ifdef DECODER
- #ifndef KUHN
- #define KUHN
- #endif
- #endif
- size_t _wchar_utf8sntowcs(wchar_t *__restrict pwc, size_t wn,
- const char **__restrict src, size_t n,
- mbstate_t *ps, int allow_continuation)
- {
- register const char *s;
- __uwchar_t mask;
- __uwchar_t wc;
- wchar_t wcbuf[1];
- size_t count;
- int incr;
- s = *src;
- assert(s != NULL);
- assert(ps != NULL);
- incr = 1;
- if (!pwc) {
- pwc = wcbuf;
- wn = SIZE_MAX;
- incr = 0;
- }
- /* This is really here only to support the glibc extension function
- * __mbsnrtowcs which apparently returns 0 if wn == 0 without any
- * check on the validity of the mbstate. */
- if (!(count = wn)) {
- return 0;
- }
- if ((mask = (__uwchar_t) ps->mask) != 0) { /* A continuation... */
- #ifdef DECODER
- wc = (__uwchar_t) ps->wc;
- if (n) {
- goto CONTINUE;
- }
- goto DONE;
- #else
- if ((wc = (__uwchar_t) ps->wc) != 0xffffU) {
- /* TODO: change error code here and below? */
- if (n) {
- goto CONTINUE;
- }
- goto DONE;
- }
- return (size_t) -1; /* We're in an error state. */
- #endif
- }
- do {
- if (!n) {
- goto DONE;
- }
- --n;
- if ((wc = ((unsigned char) *s++)) >= 0x80) { /* Not ASCII... */
- mask = 0x40;
- #ifdef __UCLIBC_MJN3_ONLY__
- #warning fix range for 16 bit wides
- #endif
- if ( ((unsigned char)(s[-1] - 0xc0)) < (0xfe - 0xc0) ) {
- goto START;
- }
- BAD:
- #ifdef DECODER
- wc = 0xfffd;
- goto COMPLETE;
- #else
- ps->mask = mask;
- ps->wc = 0xffffU;
- return (size_t) -1; /* Illegal start byte! */
- #endif
- CONTINUE:
- while (n) {
- --n;
- if ((*s & 0xc0) != 0x80) {
- goto BAD;
- }
- mask <<= 5;
- wc <<= 6;
- wc += (*s & 0x3f); /* keep seperate for bcc (smaller code) */
- ++s;
- START:
- wc &= ~(mask << 1);
- if ((wc & mask) == 0) { /* Character completed. */
- if ((mask >>= 5) == 0x40) {
- mask += mask;
- }
- /* Check for invalid sequences (longer than necessary)
- * and invalid chars. */
- if ( (wc < mask) /* Sequence not minimal length. */
- #ifdef KUHN
- #if UTF_8_MAX_LEN == 3
- #error broken since mask can overflow!!
- /* For plane 0, these are the only defined values.*/
- || (wc > 0xfffdU)
- #else
- /* Note that we don't need to worry about exceeding */
- /* 31 bits as that is the most that UTF-8 provides. */
- || ( ((__uwchar_t)(wc - 0xfffeU)) < 2)
- #endif
- || ( ((__uwchar_t)(wc - 0xd800U)) < (0xe000U - 0xd800U) )
- #endif /* KUHN */
- ) {
- goto BAD;
- }
- goto COMPLETE;
- }
- }
- /* Character potentially valid but incomplete. */
- if (!allow_continuation) {
- if (count != wn) {
- return 0;
- }
- /* NOTE: The following can fail if you allow and then disallow
- * continuation!!! */
- #if UTF_8_MAX_LEN == 3
- #error broken since mask can overflow!!
- #endif
- /* Need to back up... */
- do {
- --s;
- } while ((mask >>= 5) >= 0x40);
- goto DONE;
- }
- ps->mask = (wchar_t) mask;
- ps->wc = (wchar_t) wc;
- *src = s;
- return (size_t) -2;
- }
- COMPLETE:
- *pwc = wc;
- pwc += incr;
- }
- #ifdef DECODER
- while (--count);
- #else
- while (wc && --count);
- if (!wc) {
- s = NULL;
- }
- #endif
- DONE:
- /* ps->wc is irrelavent here. */
- ps->mask = 0;
- if (pwc != wcbuf) {
- *src = s;
- }
- return wn - count;
- }
- #endif
- /**********************************************************************/
- #ifdef L__wchar_wcsntoutf8s
- size_t _wchar_wcsntoutf8s(char *__restrict s, size_t n,
- const wchar_t **__restrict src, size_t wn)
- {
- register char *p;
- size_t len, t;
- __uwchar_t wc;
- const __uwchar_t *swc;
- int store;
- char buf[MB_LEN_MAX];
- char m;
- store = 1;
- /* NOTE: The following is an AWFUL HACK! In order to support %ls in
- * printf, we need to be able to compute the number of bytes needed
- * for the mbs conversion, not to exceed the precision specified.
- * But if dst is NULL, the return value is the length assuming a
- * sufficiently sized buffer. So, we allow passing of (char *) src
- * as dst in order to flag that we really want the length, subject
- * to the restricted buffer size and no partial conversions.
- * See wcsnrtombs() as well. */
- if (!s || (s == ((char *) src))) {
- if (!s) {
- n = SIZE_MAX;
- }
- s = buf;
- store = 0;
- }
- t = n;
- swc = (const __uwchar_t *) *src;
- assert(swc != NULL);
- while (wn && t) {
- wc = *swc;
- *s = wc;
- len = 1;
- if (wc >= 0x80) {
- #ifdef KUHN
- if (
- #if UTF_8_MAX_LEN == 3
- /* For plane 0, these are the only defined values.*/
- /* Note that we don't need to worry about exceeding */
- /* 31 bits as that is the most that UTF-8 provides. */
- (wc > 0xfffdU)
- #else
- /* UTF_8_MAX_LEN == 6 */
- (wc > 0x7fffffffUL)
- || ( ((__uwchar_t)(wc - 0xfffeU)) < 2)
- #endif
- || ( ((__uwchar_t)(wc - 0xd800U)) < (0xe000U - 0xd800U) )
- ) {
- return (size_t) -1;
- }
- #else /* KUHN */
- #if UTF_8_MAX_LEN != 3
- if (wc > 0x7fffffffUL) { /* Value too large. */
- return (size_t) -1;
- }
- #endif
- #endif /* KUHN */
- wc >>= 1;
- p = s;
- do {
- ++p;
- } while (wc >>= 5);
- wc = *swc;
- if ((len = p - s) > t) { /* Not enough space. */
- break;
- }
- m = 0x80;
- while( p>s ) {
- m = (m >> 1) | 0x80;
- *--p = (wc & 0x3f) | 0x80;
- wc >>= 6;
- }
- *s |= (m << 1);
- } else if (wc == 0) { /* End of string. */
- swc = NULL;
- break;
- }
- ++swc;
- --wn;
- t -= len;
- if (store) {
- s += len;
- }
- }
- if (store) {
- *src = (const wchar_t *) swc;
- }
- return n - t;
- }
- #endif
- /**********************************************************************/
- #ifdef L___mbsnrtowcs
- /* WARNING: We treat len as SIZE_MAX when dst is NULL! */
- size_t mbsnrtowcs(wchar_t *__restrict dst, const char **__restrict src,
- size_t NMC, size_t len, mbstate_t *__restrict ps)
- __attribute__ ((__weak__, __alias__("__mbsnrtowcs")));
- size_t __mbsnrtowcs(wchar_t *__restrict dst, const char **__restrict src,
- size_t NMC, size_t len, mbstate_t *__restrict ps)
- {
- static mbstate_t mbstate; /* Rely on bss 0-init. */
- wchar_t wcbuf[1];
- const char *s;
- size_t count;
- int incr;
- if (!ps) {
- ps = &mbstate;
- }
- #ifdef __CTYPE_HAS_UTF_8_LOCALES
- if (ENCODING == __ctype_encoding_utf8) {
- size_t r;
- return ((r = _wchar_utf8sntowcs(dst, len, src, NMC, ps, 1))
- != (size_t) -2) ? r : 0;
- }
- #endif
- incr = 1;
- if (!dst) {
- dst = wcbuf;
- len = SIZE_MAX;
- incr = 0;
- }
- /* Since all the following encodings are single-byte encodings... */
- if (len > NMC) {
- len = NMC;
- }
- count = len;
- s = *src;
- #ifdef __CTYPE_HAS_8_BIT_LOCALES
- if (ENCODING == __ctype_encoding_8_bit) {
- wchar_t wc;
- while (count) {
- if ((wc = ((unsigned char)(*s))) >= 0x80) { /* Non-ASCII... */
- wc -= 0x80;
- wc = __global_locale.tbl8c2wc[
- (__global_locale.idx8c2wc[wc >> Cc2wc_IDX_SHIFT]
- << Cc2wc_IDX_SHIFT) + (wc & (Cc2wc_ROW_LEN - 1))];
- if (!wc) {
- __set_errno(EILSEQ);
- return (size_t) -1;
- }
- }
- if (!(*dst = wc)) {
- s = NULL;
- break;
- }
- dst += incr;
- ++s;
- --count;
- }
- if (dst != wcbuf) {
- *src = s;
- }
- return len - count;
- }
- #endif
- #ifdef __UCLIBC_HAS_LOCALE__
- assert(ENCODING == __ctype_encoding_7_bit);
- #endif
- while (count) {
- if ((*dst = (unsigned char) *s) == 0) {
- s = NULL;
- break;
- }
- ++s;
- dst += incr;
- --count;
- }
- if (dst != wcbuf) {
- *src = s;
- }
- return len - count;
- }
- #endif
- /**********************************************************************/
- #ifdef L___wcsnrtombs
- /* WARNING: We treat len as SIZE_MAX when dst is NULL! */
- /* Note: We completely ignore ps in all currently supported conversions.
- * TODO: Check for valid state anyway? */
- size_t wcsnrtombs(char *__restrict dst, const wchar_t **__restrict src,
- size_t NWC, size_t len, mbstate_t *__restrict ps)
- __attribute__ ((__weak__, __alias__("__wcsnrtombs")));
- size_t __wcsnrtombs(char *__restrict dst, const wchar_t **__restrict src,
- size_t NWC, size_t len, mbstate_t *__restrict ps)
- {
- const __uwchar_t *s;
- size_t count;
- int incr;
- char buf[MB_LEN_MAX];
- #ifdef __CTYPE_HAS_UTF_8_LOCALES
- if (ENCODING == __ctype_encoding_utf8) {
- return _wchar_wcsntoutf8s(dst, len, src, NWC);
- }
- #endif /* __CTYPE_HAS_UTF_8_LOCALES */
- incr = 1;
- /* NOTE: The following is an AWFUL HACK! In order to support %ls in
- * printf, we need to be able to compute the number of bytes needed
- * for the mbs conversion, not to exceed the precision specified.
- * But if dst is NULL, the return value is the length assuming a
- * sufficiently sized buffer. So, we allow passing of (char *) src
- * as dst in order to flag that we really want the length, subject
- * to the restricted buffer size and no partial conversions.
- * See _wchar_wcsntoutf8s() as well. */
- if (!dst || (dst == ((char *) src))) {
- if (!dst) {
- len = SIZE_MAX;
- }
- dst = buf;
- incr = 0;
- }
- /* Since all the following encodings are single-byte encodings... */
- if (len > NWC) {
- len = NWC;
- }
- count = len;
- s = (const __uwchar_t *) *src;
- #ifdef __CTYPE_HAS_8_BIT_LOCALES
- if (ENCODING == __ctype_encoding_8_bit) {
- __uwchar_t wc;
- __uwchar_t u;
- while (count) {
- if ((wc = *s) <= 0x7f) {
- if (!(*dst = (unsigned char) wc)) {
- s = NULL;
- break;
- }
- } else {
- u = 0;
- if (wc <= Cwc2c_DOMAIN_MAX) {
- u = __global_locale.idx8wc2c[wc >> (Cwc2c_TI_SHIFT
- + Cwc2c_TT_SHIFT)];
- u = __global_locale.tbl8wc2c[(u << Cwc2c_TI_SHIFT)
- + ((wc >> Cwc2c_TT_SHIFT)
- & ((1 << Cwc2c_TI_SHIFT)-1))];
- u = __global_locale.tbl8wc2c[Cwc2c_TI_LEN
- + (u << Cwc2c_TT_SHIFT)
- + (wc & ((1 << Cwc2c_TT_SHIFT)-1))];
- }
- /* #define __WCHAR_REPLACEMENT_CHAR '?' */
- #ifdef __WCHAR_REPLACEMENT_CHAR
- *dst = (unsigned char) ( u ? u : __WCHAR_REPLACEMENT_CHAR );
- #else /* __WCHAR_REPLACEMENT_CHAR */
- if (!u) {
- goto BAD;
- }
- *dst = (unsigned char) u;
- #endif /* __WCHAR_REPLACEMENT_CHAR */
- }
- ++s;
- dst += incr;
- --count;
- }
- if (dst != buf) {
- *src = (const wchar_t *) s;
- }
- return len - count;
- }
- #endif /* __CTYPE_HAS_8_BIT_LOCALES */
- #ifdef __UCLIBC_HAS_LOCALE__
- assert(ENCODING == __ctype_encoding_7_bit);
- #endif
- while (count) {
- if (*s > UCHAR_MAX) {
- #if defined(__CTYPE_HAS_8_BIT_LOCALES) && !defined(__WCHAR_REPLACEMENT_CHAR)
- BAD:
- #endif
- __set_errno(EILSEQ);
- return (size_t) -1;
- }
- if ((*dst = (unsigned char) *s) == 0) {
- s = NULL;
- break;
- }
- ++s;
- dst += incr;
- --count;
- }
- if (dst != buf) {
- *src = (const wchar_t *) s;
- }
- return len - count;
- }
- #endif
- /**********************************************************************/
- #ifdef L_wcswidth
- #ifdef __UCLIBC_MJN3_ONLY__
- #warning if we start doing translit, wcwidth and wcswidth will need updating.
- #endif
- #if defined(__UCLIBC_HAS_LOCALE__) && \
- ( defined(__CTYPE_HAS_8_BIT_LOCALES) || defined(__CTYPE_HAS_UTF_8_LOCALES) )
- static const unsigned char new_idx[] = {
- 0, 5, 5, 6, 10, 15, 28, 39,
- 48, 48, 71, 94, 113, 128, 139, 154,
- 175, 186, 188, 188, 188, 188, 188, 188,
- 203, 208, 208, 208, 208, 208, 208, 208,
- 208, 219, 219, 219, 222, 222, 222, 222,
- 222, 222, 222, 222, 222, 222, 222, 224,
- 224, 231, 231, 231, 231, 231, 231, 231,
- 231, 231, 231, 231, 231, 231, 231, 231,
- 231, 231, 231, 231, 231, 231, 231, 231,
- 231, 231, 231, 231, 231, 231, 231, 231,
- 231, 231, 231, 231, 231, 231, 231, 231,
- 231, 231, 231, 231, 231, 231, 231, 231,
- 231, 231, 231, 231, 231, 231, 231, 231,
- 231, 231, 231, 231, 231, 231, 231, 231,
- 231, 231, 231, 231, 231, 231, 231, 231,
- 231, 231, 231, 231, 231, 231, 231, 231,
- 231, 231, 231, 231, 231, 231, 231, 231,
- 231, 231, 231, 231, 231, 231, 231, 231,
- 231, 231, 231, 231, 231, 231, 231, 231,
- 231, 231, 231, 231, 231, 231, 231, 231,
- 231, 231, 231, 231, 231, 233, 233, 233,
- 233, 233, 233, 233, 234, 234, 234, 234,
- 234, 234, 234, 234, 234, 234, 234, 234,
- 234, 234, 234, 234, 234, 234, 234, 234,
- 234, 234, 234, 234, 234, 234, 234, 234,
- 234, 234, 234, 234, 234, 234, 234, 234,
- 234, 234, 234, 234, 234, 234, 234, 234,
- 236, 236, 236, 236, 236, 236, 236, 236,
- 236, 236, 236, 236, 236, 236, 236, 236,
- 236, 236, 236, 236, 236, 236, 236, 236,
- 236, 236, 236, 236, 236, 236, 236, 236,
- 236, 237, 237, 238, 241, 241, 242, 249,
- 255,
- };
- static const unsigned char new_tbl[] = {
- 0x00, 0x01, 0x20, 0x7f, 0xa0, 0x00, 0x00, 0x50,
- 0x60, 0x70, 0x00, 0x83, 0x87, 0x88, 0x8a, 0x00,
- 0x91, 0xa2, 0xa3, 0xba, 0xbb, 0xbe, 0xbf, 0xc0,
- 0xc1, 0xc3, 0xc4, 0xc5, 0x00, 0x4b, 0x56, 0x70,
- 0x71, 0xd6, 0xe5, 0xe7, 0xe9, 0xea, 0xee, 0x00,
- 0x0f, 0x10, 0x11, 0x12, 0x30, 0x4b, 0xa6, 0xb1,
- 0x00, 0x01, 0x03, 0x3c, 0x3d, 0x41, 0x49, 0x4d,
- 0x4e, 0x51, 0x55, 0x62, 0x64, 0x81, 0x82, 0xbc,
- 0xbd, 0xc1, 0xc5, 0xcd, 0xce, 0xe2, 0xe4, 0x00,
- 0x02, 0x03, 0x3c, 0x3d, 0x41, 0x43, 0x47, 0x49,
- 0x4b, 0x4e, 0x70, 0x72, 0x81, 0x83, 0xbc, 0xbd,
- 0xc1, 0xc6, 0xc7, 0xc9, 0xcd, 0xce, 0x00, 0x01,
- 0x02, 0x3c, 0x3d, 0x3f, 0x40, 0x41, 0x44, 0x4d,
- 0x4e, 0x56, 0x57, 0x82, 0x83, 0xc0, 0xc1, 0xcd,
- 0xce, 0x00, 0x3e, 0x41, 0x46, 0x49, 0x4a, 0x4e,
- 0x55, 0x57, 0xbf, 0xc0, 0xc6, 0xc7, 0xcc, 0xce,
- 0x00, 0x41, 0x44, 0x4d, 0x4e, 0xca, 0xcb, 0xd2,
- 0xd5, 0xd6, 0xd7, 0x00, 0x31, 0x32, 0x34, 0x3b,
- 0x47, 0x4f, 0xb1, 0xb2, 0xb4, 0xba, 0xbb, 0xbd,
- 0xc8, 0xce, 0x00, 0x18, 0x1a, 0x35, 0x36, 0x37,
- 0x38, 0x39, 0x3a, 0x71, 0x7f, 0x80, 0x85, 0x86,
- 0x88, 0x90, 0x98, 0x99, 0xbd, 0xc6, 0xc7, 0x00,
- 0x2d, 0x31, 0x32, 0x33, 0x36, 0x38, 0x39, 0x3a,
- 0x58, 0x5a, 0x00, 0x60, 0x00, 0x12, 0x15, 0x32,
- 0x35, 0x52, 0x54, 0x72, 0x74, 0xb7, 0xbe, 0xc6,
- 0xc7, 0xc9, 0xd4, 0x00, 0x0b, 0x0f, 0xa9, 0xaa,
- 0x00, 0x0b, 0x10, 0x2a, 0x2f, 0x60, 0x64, 0x6a,
- 0x70, 0xd0, 0xeb, 0x00, 0x29, 0x2b, 0x00, 0x80,
- 0x00, 0x2a, 0x30, 0x3f, 0x40, 0x99, 0x9b, 0x00,
- 0xd0, 0x00, 0x00, 0xa4, 0x00, 0x00, 0x00, 0x1e,
- 0x1f, 0x00, 0x00, 0x10, 0x20, 0x24, 0x30, 0x70,
- 0xff, 0x00, 0x61, 0xe0, 0xe7, 0xf9, 0xfc,
- };
- static const signed char new_wtbl[] = {
- 0, -1, 1, -1, 1, 1, 0, 1,
- 0, 1, 1, 0, 1, 0, 1, 1,
- 0, 1, 0, 1, 0, 1, 0, 1,
- 0, 1, 0, 1, 1, 0, 1, 0,
- 1, 0, 1, 0, 1, 0, 1, 1,
- 0, 1, 0, 1, 0, 1, 0, 1,
- 1, 0, 1, 0, 1, 0, 1, 0,
- 1, 0, 1, 0, 1, 0, 1, 0,
- 1, 0, 1, 0, 1, 0, 1, 1,
- 0, 1, 0, 1, 0, 1, 0, 1,
- 0, 1, 0, 1, 0, 1, 0, 1,
- 0, 1, 0, 1, 0, 1, 1, 0,
- 1, 0, 1, 0, 1, 0, 1, 0,
- 1, 0, 1, 0, 1, 0, 1, 0,
- 1, 1, 0, 1, 0, 1, 0, 1,
- 0, 1, 0, 1, 0, 1, 0, 1,
- 1, 0, 1, 0, 1, 0, 1, 0,
- 1, 0, 1, 1, 0, 1, 0, 1,
- 0, 1, 0, 1, 0, 1, 0, 1,
- 0, 1, 1, 0, 1, 0, 1, 0,
- 1, 0, 1, 0, 1, 0, 1, 0,
- 1, 0, 1, 0, 1, 0, 1, 1,
- 0, 1, 0, 1, 0, 1, 0, 1,
- 0, 1, 2, 0, 1, 0, 1, 0,
- 1, 0, 1, 0, 1, 0, 1, 0,
- 1, 0, 1, 1, 0, 1, 0, 1,
- 1, 0, 1, 0, 1, 0, 1, 0,
- 1, 0, 1, 1, 2, 1, 1, 2,
- 2, 0, 2, 1, 2, 0, 2, 2,
- 1, 1, 2, 1, 1, 2, 1, 0,
- 1, 1, 0, 1, 0, 1, 2, 1,
- 0, 2, 1, 2, 1, 0, 1,
- };
- int wcswidth(const wchar_t *pwcs, size_t n)
- {
- int h, l, m, count;
- wchar_t wc;
- unsigned char b;
- if (ENCODING == __ctype_encoding_7_bit) {
- size_t i;
-
- for (i = 0 ; (i < n) && pwcs[i] ; i++) {
- if (pwcs[i] != ((unsigned char)(pwcs[i]))) {
- return -1;
- }
- }
- }
- #ifdef __CTYPE_HAS_8_BIT_LOCALES
- else if (ENCODING == __ctype_encoding_8_bit) {
- mbstate_t mbstate;
- mbstate.mask = 0; /* Initialize the mbstate. */
- if (__wcsnrtombs(NULL, &pwcs, n, SIZE_MAX, &mbstate) == ((size_t) - 1)) {
- return -1;
- }
- }
- #endif /* __CTYPE_HAS_8_BIT_LOCALES */
- #if defined(__CTYPE_HAS_UTF_8_LOCALES) && defined(KUHN)
- /* For stricter handling of allowed unicode values... see comments above. */
- else if (ENCODING == __ctype_encoding_utf8) {
- size_t i;
-
- for (i = 0 ; (i < n) && pwcs[i] ; i++) {
- if ( (((__uwchar_t)((pwcs[i]) - 0xfffeU)) < 2)
- || (((__uwchar_t)((pwcs[i]) - 0xd800U)) < (0xe000U - 0xd800U))
- ) {
- return -1;
- }
- }
- }
- #endif /* __CTYPE_HAS_UTF_8_LOCALES */
- for (count = 0 ; n && (wc = *pwcs++) ; n--) {
- if (wc <= 0xff) {
- /* If we're here, wc != 0. */
- if ((wc < 32) || ((wc >= 0x7f) && (wc < 0xa0))) {
- return -1;
- }
- ++count;
- continue;
- }
- if (((unsigned int) wc) <= 0xffff) {
- b = wc & 0xff;
- h = (wc >> 8);
- l = new_idx[h];
- h = new_idx[h+1];
- while ((m = (l+h) >> 1) != l) {
- if (b >= new_tbl[m]) {
- l = m;
- } else { /* wc < tbl[m] */
- h = m;
- }
- }
- count += new_wtbl[l]; /* none should be -1. */
- continue;
- }
- /* Redo this to minimize average number of compares?*/
- if (wc >= 0x1d167) {
- if (wc <= 0x1d1ad) {
- if ((wc <= 0x1d169
- || (wc >= 0x1d173
- && (wc <= 0x1d182
- || (wc >= 0x1d185
- && (wc <= 0x1d18b
- || (wc >= 0x1d1aa))))))
- ) {
- continue;
- }
- } else if (((wc >= 0xe0020) && (wc <= 0xe007f)) || (wc == 0xe0001)) {
- continue;
- } else if ((wc >= 0x20000) && (wc <= 0x2ffff)) {
- ++count; /* need 2.. add one here */
- }
- #if (WCHAR_MAX > 0x7fffffffL)
- else if (wc > 0x7fffffffL) {
- return -1;
- }
- #endif /* (WCHAR_MAX > 0x7fffffffL) */
- }
- ++count;
- }
- return count;
- }
- #else /* __UCLIBC_HAS_LOCALE__ */
- int wcswidth(const wchar_t *pwcs, size_t n)
- {
- int count;
- wchar_t wc;
- for (count = 0 ; n && (wc = *pwcs++) ; n--) {
- if (wc <= 0xff) {
- /* If we're here, wc != 0. */
- if ((wc < 32) || ((wc >= 0x7f) && (wc < 0xa0))) {
- return -1;
- }
- ++count;
- continue;
- } else {
- return -1;
- }
- }
- return count;
- }
- #endif /* __UCLIBC_HAS_LOCALE__ */
- #endif
- /**********************************************************************/
- #ifdef L_wcwidth
- int wcwidth(wchar_t wc)
- {
- return wcswidth(&wc, 1);
- }
- #endif
- /**********************************************************************/
|