2009-07-12 01:06:13 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Unicode support routines.
|
|
|
|
*
|
2009-07-16 05:57:04 +05:30
|
|
|
* Copyright (C) 2009 Denys Vlasenko
|
2009-07-12 01:06:13 +05:30
|
|
|
*
|
|
|
|
* Licensed under GPL version 2, see file LICENSE in this tarball for details.
|
|
|
|
*/
|
|
|
|
#include "libbb.h"
|
2010-01-05 01:19:58 +05:30
|
|
|
#include "unicode.h"
|
|
|
|
|
2010-01-24 12:14:03 +05:30
|
|
|
/* If it's not #defined as a constant in unicode.h... */
|
2010-01-20 07:21:09 +05:30
|
|
|
#ifndef unicode_status
|
2010-01-05 01:19:58 +05:30
|
|
|
uint8_t unicode_status;
|
2010-01-20 07:21:09 +05:30
|
|
|
#endif
|
2009-07-12 01:06:13 +05:30
|
|
|
|
2010-01-24 12:14:03 +05:30
|
|
|
/* This file is compiled only if FEATURE_ASSUME_UNICODE is on.
|
|
|
|
* We check other options and decide whether to use libc support
|
|
|
|
* via locale, or use our own logic:
|
|
|
|
*/
|
2009-07-12 01:06:13 +05:30
|
|
|
|
2010-01-05 01:19:58 +05:30
|
|
|
#if ENABLE_LOCALE_SUPPORT
|
|
|
|
|
2010-01-24 12:14:03 +05:30
|
|
|
/* Unicode support using libc locale support. */
|
2010-01-05 01:19:58 +05:30
|
|
|
|
|
|
|
void FAST_FUNC init_unicode(void)
|
|
|
|
{
|
|
|
|
/* In unicode, this is a one character string */
|
|
|
|
static const char unicode_0x394[] = { 0xce, 0x94, 0 };
|
|
|
|
|
|
|
|
if (unicode_status != UNICODE_UNKNOWN)
|
|
|
|
return;
|
|
|
|
|
2010-01-24 12:14:03 +05:30
|
|
|
unicode_status = unicode_strlen(unicode_0x394) == 1 ? UNICODE_ON : UNICODE_OFF;
|
2010-01-05 01:19:58 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
2009-07-12 01:06:13 +05:30
|
|
|
|
2010-01-24 12:14:03 +05:30
|
|
|
/* Homegrown Unicode support. It knows only C and Unicode locales. */
|
2009-07-12 01:56:48 +05:30
|
|
|
|
2010-01-05 01:19:58 +05:30
|
|
|
# if ENABLE_FEATURE_CHECK_UNICODE_IN_ENV
|
|
|
|
void FAST_FUNC init_unicode(void)
|
2009-07-12 01:06:13 +05:30
|
|
|
{
|
|
|
|
char *lang;
|
|
|
|
|
2010-01-05 01:19:58 +05:30
|
|
|
if (unicode_status != UNICODE_UNKNOWN)
|
2009-07-12 01:06:13 +05:30
|
|
|
return;
|
|
|
|
|
2010-01-05 01:19:58 +05:30
|
|
|
unicode_status = UNICODE_OFF;
|
2009-07-12 01:06:13 +05:30
|
|
|
lang = getenv("LANG");
|
2009-07-16 19:39:25 +05:30
|
|
|
if (!lang || !(strstr(lang, ".utf") || strstr(lang, ".UTF")))
|
2009-07-12 01:06:13 +05:30
|
|
|
return;
|
2010-01-05 01:19:58 +05:30
|
|
|
unicode_status = UNICODE_ON;
|
2009-07-12 01:06:13 +05:30
|
|
|
}
|
|
|
|
# endif
|
|
|
|
|
|
|
|
static size_t wcrtomb_internal(char *s, wchar_t wc)
|
|
|
|
{
|
2009-07-16 06:36:22 +05:30
|
|
|
int n, i;
|
2009-07-12 01:06:13 +05:30
|
|
|
uint32_t v = wc;
|
|
|
|
|
|
|
|
if (v <= 0x7f) {
|
|
|
|
*s = v;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2009-07-12 01:56:48 +05:30
|
|
|
/* RFC 3629 says that Unicode ends at 10FFFF,
|
|
|
|
* but we cover entire 32 bits */
|
2009-07-12 01:06:13 +05:30
|
|
|
|
2009-07-12 01:56:48 +05:30
|
|
|
/* 4000000-FFFFFFFF -> 111111tt 10tttttt 10zzzzzz 10zzyyyy 10yyyyxx 10xxxxxx */
|
|
|
|
/* 200000-3FFFFFF -> 111110tt 10zzzzzz 10zzyyyy 10yyyyxx 10xxxxxx */
|
2009-07-12 01:06:13 +05:30
|
|
|
/* 10000-1FFFFF -> 11110zzz 10zzyyyy 10yyyyxx 10xxxxxx */
|
2009-07-16 06:36:22 +05:30
|
|
|
/* 800-FFFF -> 1110yyyy 10yyyyxx 10xxxxxx */
|
|
|
|
/* 80-7FF -> 110yyyxx 10xxxxxx */
|
|
|
|
|
|
|
|
/* How many bytes do we need? */
|
|
|
|
n = 2;
|
|
|
|
/* (0x80000000+ would result in n = 7, limiting n to 6) */
|
|
|
|
while (v >= 0x800 && n < 6) {
|
|
|
|
v >>= 5;
|
2009-07-12 01:56:48 +05:30
|
|
|
n++;
|
2009-07-12 01:06:13 +05:30
|
|
|
}
|
2009-07-16 06:36:22 +05:30
|
|
|
/* Fill bytes n-1..1 */
|
|
|
|
i = n;
|
|
|
|
while (--i) {
|
|
|
|
s[i] = (wc & 0x3f) | 0x80;
|
2009-07-12 01:56:48 +05:30
|
|
|
wc >>= 6;
|
2009-07-12 01:06:13 +05:30
|
|
|
}
|
2009-07-16 06:36:22 +05:30
|
|
|
/* Fill byte 0 */
|
2009-07-12 01:56:48 +05:30
|
|
|
s[0] = wc | (uint8_t)(0x3f00 >> n);
|
|
|
|
return n;
|
2009-07-12 01:06:13 +05:30
|
|
|
}
|
|
|
|
size_t FAST_FUNC wcrtomb(char *s, wchar_t wc, mbstate_t *ps UNUSED_PARAM)
|
|
|
|
{
|
2010-01-05 01:19:58 +05:30
|
|
|
if (unicode_status != UNICODE_ON) {
|
2009-07-12 01:06:13 +05:30
|
|
|
*s = wc;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return wcrtomb_internal(s, wc);
|
|
|
|
}
|
|
|
|
size_t FAST_FUNC wcstombs(char *dest, const wchar_t *src, size_t n)
|
|
|
|
{
|
|
|
|
size_t org_n = n;
|
|
|
|
|
2010-01-05 01:19:58 +05:30
|
|
|
if (unicode_status != UNICODE_ON) {
|
2009-07-12 01:06:13 +05:30
|
|
|
while (n) {
|
|
|
|
wchar_t c = *src++;
|
|
|
|
*dest++ = c;
|
|
|
|
if (c == 0)
|
|
|
|
break;
|
|
|
|
n--;
|
|
|
|
}
|
|
|
|
return org_n - n;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (n >= MB_CUR_MAX) {
|
|
|
|
wchar_t wc = *src++;
|
|
|
|
size_t len = wcrtomb_internal(dest, wc);
|
|
|
|
|
|
|
|
if (wc == L'\0')
|
|
|
|
return org_n - n;
|
|
|
|
dest += len;
|
|
|
|
n -= len;
|
|
|
|
}
|
|
|
|
while (n) {
|
|
|
|
char tbuf[MB_CUR_MAX];
|
|
|
|
wchar_t wc = *src++;
|
|
|
|
size_t len = wcrtomb_internal(tbuf, wc);
|
|
|
|
|
|
|
|
if (len > n)
|
|
|
|
len = n;
|
|
|
|
memcpy(dest, tbuf, len);
|
|
|
|
if (wc == L'\0')
|
|
|
|
return org_n - n;
|
|
|
|
dest += len;
|
|
|
|
n -= len;
|
|
|
|
}
|
|
|
|
return org_n - n;
|
|
|
|
}
|
|
|
|
|
2010-01-24 12:14:03 +05:30
|
|
|
static const char *mbstowc_internal(wchar_t *res, const char *src)
|
|
|
|
{
|
|
|
|
int bytes;
|
|
|
|
unsigned c = (unsigned char) *src++;
|
|
|
|
|
|
|
|
if (c <= 0x7f) {
|
|
|
|
*res = c;
|
|
|
|
return src;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 80-7FF -> 110yyyxx 10xxxxxx */
|
|
|
|
/* 800-FFFF -> 1110yyyy 10yyyyxx 10xxxxxx */
|
|
|
|
/* 10000-1FFFFF -> 11110zzz 10zzyyyy 10yyyyxx 10xxxxxx */
|
|
|
|
/* 200000-3FFFFFF -> 111110tt 10zzzzzz 10zzyyyy 10yyyyxx 10xxxxxx */
|
|
|
|
/* 4000000-FFFFFFFF -> 111111tt 10tttttt 10zzzzzz 10zzyyyy 10yyyyxx 10xxxxxx */
|
|
|
|
bytes = 0;
|
|
|
|
do {
|
|
|
|
c <<= 1;
|
|
|
|
bytes++;
|
|
|
|
} while ((c & 0x80) && bytes < 6);
|
|
|
|
if (bytes == 1)
|
|
|
|
return NULL;
|
|
|
|
c = (uint8_t)(c) >> bytes;
|
|
|
|
|
|
|
|
while (--bytes) {
|
|
|
|
unsigned ch = (unsigned char) *src++;
|
|
|
|
if ((ch & 0xc0) != 0x80) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
c = (c << 6) + (ch & 0x3f);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TODO */
|
|
|
|
/* Need to check that c isn't produced by overlong encoding */
|
|
|
|
/* Example: 11000000 10000000 converts to NUL */
|
|
|
|
/* 11110000 10000000 10000100 10000000 converts to 0x100 */
|
|
|
|
/* correct encoding: 11000100 10000000 */
|
|
|
|
if (c <= 0x7f) { /* crude check */
|
|
|
|
return NULL;
|
|
|
|
//or maybe 0xfffd; /* replacement character */
|
|
|
|
}
|
|
|
|
|
|
|
|
*res = c;
|
|
|
|
return src;
|
|
|
|
}
|
2009-07-12 01:06:13 +05:30
|
|
|
size_t FAST_FUNC mbstowcs(wchar_t *dest, const char *src, size_t n)
|
|
|
|
{
|
|
|
|
size_t org_n = n;
|
|
|
|
|
2010-01-05 01:19:58 +05:30
|
|
|
if (unicode_status != UNICODE_ON) {
|
2009-07-12 01:06:13 +05:30
|
|
|
while (n) {
|
|
|
|
unsigned char c = *src++;
|
2009-07-12 01:56:48 +05:30
|
|
|
|
|
|
|
if (dest)
|
|
|
|
*dest++ = c;
|
2009-07-12 01:06:13 +05:30
|
|
|
if (c == 0)
|
|
|
|
break;
|
|
|
|
n--;
|
|
|
|
}
|
|
|
|
return org_n - n;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (n) {
|
2010-01-24 12:14:03 +05:30
|
|
|
wchar_t wc;
|
2010-01-25 06:30:16 +05:30
|
|
|
src = mbstowc_internal(&wc, src);
|
|
|
|
if (src == NULL) /* error */
|
2009-07-12 01:06:13 +05:30
|
|
|
return (size_t) -1L;
|
2009-07-12 01:56:48 +05:30
|
|
|
if (dest)
|
2010-01-25 06:30:16 +05:30
|
|
|
*dest++ = wc;
|
|
|
|
if (wc == 0) /* end-of-string */
|
|
|
|
break;
|
2009-07-12 01:06:13 +05:30
|
|
|
n--;
|
|
|
|
}
|
|
|
|
|
|
|
|
return org_n - n;
|
|
|
|
}
|
|
|
|
|
|
|
|
int FAST_FUNC iswspace(wint_t wc)
|
|
|
|
{
|
|
|
|
return (unsigned)wc <= 0x7f && isspace(wc);
|
|
|
|
}
|
|
|
|
|
|
|
|
int FAST_FUNC iswalnum(wint_t wc)
|
|
|
|
{
|
|
|
|
return (unsigned)wc <= 0x7f && isalnum(wc);
|
|
|
|
}
|
|
|
|
|
|
|
|
int FAST_FUNC iswpunct(wint_t wc)
|
|
|
|
{
|
|
|
|
return (unsigned)wc <= 0x7f && ispunct(wc);
|
|
|
|
}
|
|
|
|
|
2010-01-29 13:41:47 +05:30
|
|
|
#include "unicode_wcwidth.c"
|
|
|
|
|
2010-01-24 12:14:03 +05:30
|
|
|
#endif /* Homegrown Unicode support */
|
|
|
|
|
|
|
|
|
|
|
|
/* The rest is mostly same for libc and for "homegrown" support */
|
|
|
|
|
|
|
|
size_t FAST_FUNC unicode_strlen(const char *string)
|
|
|
|
{
|
|
|
|
size_t width = mbstowcs(NULL, string, INT_MAX);
|
|
|
|
if (width == (size_t)-1L)
|
|
|
|
return strlen(string);
|
|
|
|
return width;
|
|
|
|
}
|
|
|
|
|
2010-01-31 03:46:21 +05:30
|
|
|
static char* FAST_FUNC unicode_conv_to_printable2(uni_stat_t *stats, const char *src, unsigned width, int flags)
|
2010-01-24 12:14:03 +05:30
|
|
|
{
|
|
|
|
char *dst;
|
|
|
|
unsigned dst_len;
|
2010-01-31 03:46:21 +05:30
|
|
|
unsigned uni_count;
|
|
|
|
unsigned uni_width;
|
2010-01-24 12:14:03 +05:30
|
|
|
|
2010-01-29 13:41:47 +05:30
|
|
|
if (unicode_status != UNICODE_ON) {
|
2010-01-31 03:46:21 +05:30
|
|
|
char *d;
|
|
|
|
if (flags & UNI_FLAG_PAD) {
|
|
|
|
d = dst = xmalloc(width + 1);
|
|
|
|
while ((int)--width >= 0) {
|
|
|
|
unsigned char c = *src;
|
|
|
|
if (c == '\0') {
|
|
|
|
do
|
|
|
|
*d++ = ' ';
|
|
|
|
while ((int)--width >= 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
*d++ = (c >= ' ' && c < 0x7f) ? c : '?';
|
|
|
|
src++;
|
|
|
|
}
|
|
|
|
*d = '\0';
|
|
|
|
} else {
|
|
|
|
d = dst = xstrndup(src, width);
|
|
|
|
while (*d) {
|
|
|
|
unsigned char c = *d;
|
|
|
|
if (c < ' ' || c >= 0x7f)
|
|
|
|
*d = '?';
|
|
|
|
d++;
|
2010-01-29 13:41:47 +05:30
|
|
|
}
|
|
|
|
}
|
2010-01-31 03:46:21 +05:30
|
|
|
if (stats)
|
|
|
|
stats->byte_count = stats->unicode_count = (d - dst);
|
2010-01-29 13:41:47 +05:30
|
|
|
return dst;
|
|
|
|
}
|
2010-01-24 12:14:03 +05:30
|
|
|
|
|
|
|
dst = NULL;
|
2010-01-31 03:46:21 +05:30
|
|
|
uni_count = uni_width = 0;
|
2010-01-24 12:14:03 +05:30
|
|
|
dst_len = 0;
|
|
|
|
while (1) {
|
|
|
|
int w;
|
|
|
|
wchar_t wc;
|
|
|
|
|
|
|
|
#if ENABLE_LOCALE_SUPPORT
|
|
|
|
{
|
|
|
|
mbstate_t mbst = { 0 };
|
|
|
|
ssize_t rc = mbsrtowcs(&wc, &src, 1, &mbst);
|
2010-01-29 13:41:47 +05:30
|
|
|
/* If invalid sequence is seen: -1 is returned,
|
|
|
|
* src points to the invalid sequence, errno = EILSEQ.
|
|
|
|
* Else number of wchars (excluding terminating L'\0')
|
|
|
|
* written to dest is returned.
|
|
|
|
* If len (here: 1) non-L'\0' wchars stored at dest,
|
|
|
|
* src points to the next char to be converted.
|
|
|
|
* If string is completely converted: src = NULL.
|
|
|
|
*/
|
|
|
|
if (rc == 0) /* end-of-string */
|
2010-01-24 12:14:03 +05:30
|
|
|
break;
|
2010-01-29 13:41:47 +05:30
|
|
|
if (rc < 0) { /* error */
|
|
|
|
src++;
|
|
|
|
goto subst;
|
|
|
|
}
|
|
|
|
if (!iswprint(wc))
|
|
|
|
goto subst;
|
2010-01-24 12:14:03 +05:30
|
|
|
}
|
|
|
|
#else
|
2010-01-29 13:41:47 +05:30
|
|
|
{
|
|
|
|
const char *src1 = mbstowc_internal(&wc, src);
|
|
|
|
/* src = NULL: invalid sequence is seen,
|
|
|
|
* else: wc is set, src is advanced to next mb char
|
|
|
|
*/
|
2010-01-31 03:46:21 +05:30
|
|
|
if (src1) { /* no error */
|
2010-01-29 13:41:47 +05:30
|
|
|
if (wc == 0) /* end-of-string */
|
|
|
|
break;
|
|
|
|
src = src1;
|
|
|
|
} else { /* error */
|
|
|
|
src++;
|
|
|
|
goto subst;
|
|
|
|
}
|
|
|
|
}
|
2009-07-12 01:06:13 +05:30
|
|
|
#endif
|
2010-01-29 13:41:47 +05:30
|
|
|
if (CONFIG_LAST_SUPPORTED_WCHAR && wc > CONFIG_LAST_SUPPORTED_WCHAR)
|
|
|
|
goto subst;
|
2010-01-24 12:14:03 +05:30
|
|
|
w = wcwidth(wc);
|
2010-01-29 13:41:47 +05:30
|
|
|
if ((ENABLE_UNICODE_COMBINING_WCHARS && w < 0) /* non-printable wchar */
|
2010-01-31 03:46:21 +05:30
|
|
|
|| (!ENABLE_UNICODE_COMBINING_WCHARS && w <= 0)
|
|
|
|
|| (!ENABLE_UNICODE_WIDE_WCHARS && w > 1)
|
2010-01-29 13:41:47 +05:30
|
|
|
) {
|
|
|
|
subst:
|
|
|
|
wc = CONFIG_SUBST_WCHAR;
|
|
|
|
w = 1;
|
|
|
|
}
|
2010-01-24 12:14:03 +05:30
|
|
|
width -= w;
|
2010-01-29 13:41:47 +05:30
|
|
|
/* Note: if width == 0, we still may add more chars,
|
|
|
|
* they may be zero-width or combining ones */
|
|
|
|
if ((int)width < 0) {
|
|
|
|
/* can't add this wc, string would become longer than width */
|
2010-01-24 12:14:03 +05:30
|
|
|
width += w;
|
|
|
|
break;
|
|
|
|
}
|
2010-01-29 13:41:47 +05:30
|
|
|
|
2010-01-31 03:46:21 +05:30
|
|
|
uni_count++;
|
|
|
|
uni_width += w;
|
2010-01-29 13:41:47 +05:30
|
|
|
dst = xrealloc(dst, dst_len + MB_CUR_MAX);
|
2010-01-24 12:14:03 +05:30
|
|
|
#if ENABLE_LOCALE_SUPPORT
|
|
|
|
{
|
|
|
|
mbstate_t mbst = { 0 };
|
|
|
|
dst_len += wcrtomb(&dst[dst_len], wc, &mbst);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
dst_len += wcrtomb_internal(&dst[dst_len], wc);
|
|
|
|
#endif
|
|
|
|
}
|
2010-01-29 13:41:47 +05:30
|
|
|
|
|
|
|
/* Pad to remaining width */
|
2010-01-31 03:46:21 +05:30
|
|
|
if (flags & UNI_FLAG_PAD) {
|
|
|
|
dst = xrealloc(dst, dst_len + width + 1);
|
|
|
|
uni_count += width;
|
|
|
|
uni_width += width;
|
|
|
|
while ((int)--width >= 0) {
|
|
|
|
dst[dst_len++] = ' ';
|
|
|
|
}
|
2010-01-29 13:41:47 +05:30
|
|
|
}
|
2010-01-24 12:14:03 +05:30
|
|
|
dst[dst_len] = '\0';
|
2010-01-31 03:46:21 +05:30
|
|
|
if (stats) {
|
|
|
|
stats->byte_count = dst_len;
|
|
|
|
stats->unicode_count = uni_count;
|
|
|
|
stats->unicode_width = uni_width;
|
|
|
|
}
|
2010-01-29 13:41:47 +05:30
|
|
|
|
2010-01-24 12:14:03 +05:30
|
|
|
return dst;
|
|
|
|
}
|
2010-01-31 03:46:21 +05:30
|
|
|
char* FAST_FUNC unicode_conv_to_printable(uni_stat_t *stats, const char *src)
|
|
|
|
{
|
|
|
|
return unicode_conv_to_printable2(stats, src, INT_MAX, 0);
|
|
|
|
}
|
|
|
|
char* FAST_FUNC unicode_conv_to_printable_maxwidth(uni_stat_t *stats, const char *src, unsigned maxwidth)
|
|
|
|
{
|
|
|
|
return unicode_conv_to_printable2(stats, src, maxwidth, 0);
|
|
|
|
}
|
|
|
|
char* FAST_FUNC unicode_conv_to_printable_fixedwidth(uni_stat_t *stats, const char *src, unsigned width)
|
|
|
|
{
|
|
|
|
return unicode_conv_to_printable2(stats, src, width, UNI_FLAG_PAD);
|
|
|
|
}
|
2010-01-24 12:14:03 +05:30
|
|
|
|
2010-01-31 03:46:21 +05:30
|
|
|
#ifdef UNUSED
|
2010-01-24 12:14:03 +05:30
|
|
|
unsigned FAST_FUNC unicode_padding_to_width(unsigned width, const char *src)
|
|
|
|
{
|
|
|
|
if (unicode_status != UNICODE_ON) {
|
|
|
|
return width - strnlen(src, width);
|
|
|
|
}
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
int w;
|
|
|
|
wchar_t wc;
|
|
|
|
|
|
|
|
#if ENABLE_LOCALE_SUPPORT
|
|
|
|
{
|
|
|
|
mbstate_t mbst = { 0 };
|
|
|
|
ssize_t rc = mbsrtowcs(&wc, &src, 1, &mbst);
|
|
|
|
if (rc <= 0) /* error, or end-of-string */
|
|
|
|
return width;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
src = mbstowc_internal(&wc, src);
|
|
|
|
if (!src || wc == 0) /* error, or end-of-string */
|
|
|
|
return width;
|
|
|
|
#endif
|
|
|
|
w = wcwidth(wc);
|
|
|
|
if (w < 0) /* non-printable wchar */
|
|
|
|
return width;
|
|
|
|
width -= w;
|
|
|
|
if ((int)width <= 0) /* string is longer than width */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2010-01-31 03:46:21 +05:30
|
|
|
#endif
|