#define CK(statement) do { if ((statement) < 0) return (-1); } while (0)
-/*
- * UTF-16 => wchar
- */
int mbfl_filt_conv_utf16_wchar(int c, mbfl_convert_filter *filter)
{
- int n, endian;
-
- endian = filter->status & 0xff00;
- switch (filter->status & 0x0f) {
- case 0:
- if (endian) {
- n = c & 0xff;
- } else {
- n = (c & 0xff) << 8;
- }
- filter->cache |= n;
- filter->status++;
- break;
- default:
- if (endian) {
- n = (c & 0xff) << 8;
+ /* Start with the assumption that the string is big-endian;
+ * If we find a little-endian BOM, then we will change that assumption */
+ if (filter->status == 0) {
+ filter->cache = c & 0xFF;
+ filter->status = 1;
+ } else {
+ int n = (filter->cache << 8) | (c & 0xFF);
+ if (n == 0xFFFE) {
+ /* Switch to little-endian mode */
+ filter->filter_function = mbfl_filt_conv_utf16le_wchar;
+ filter->cache = filter->status = 0;
} else {
- n = c & 0xff;
- }
- n |= filter->cache & 0xffff;
- filter->status &= ~0x0f;
- if (n >= 0xd800 && n < 0xdc00) {
- filter->cache = ((n & 0x3ff) << 16) + 0x400000;
- } else if (n >= 0xdc00 && n < 0xe000) {
- n &= 0x3ff;
- n |= (filter->cache & 0xfff0000) >> 6;
- filter->cache = 0;
- if (n >= MBFL_WCSPLANE_SUPMIN && n < MBFL_WCSPLANE_SUPMAX) {
- CK((*filter->output_function)(n, filter->data));
- } else { /* illegal character */
- n &= MBFL_WCSGROUP_MASK;
- n |= MBFL_WCSGROUP_THROUGH;
+ filter->filter_function = mbfl_filt_conv_utf16be_wchar;
+ if (n >= 0xD800 && n <= 0xDBFF) {
+ filter->cache = n & 0x3FF; /* Pick out 10 data bits */
+ filter->status = 2;
+ return c;
+ } else if (n >= 0xDC00 && n <= 0xDFFF) {
+ /* This is wrong; second part of surrogate pair has come first */
+ CK((*filter->output_function)(n | MBFL_WCSGROUP_THROUGH, filter->data));
+ } else if (n != 0xFEFF) {
CK((*filter->output_function)(n, filter->data));
}
- } else {
- int is_first = filter->status & 0x10;
- filter->cache = 0;
- filter->status |= 0x10;
- if (!is_first) {
- if (n == 0xfffe) {
- if (endian) {
- filter->status &= ~0x100; /* big-endian */
- } else {
- filter->status |= 0x100; /* little-endian */
- }
- break;
- } else if (n == 0xfeff) {
- break;
- }
- }
- CK((*filter->output_function)(n, filter->data));
+ filter->cache = filter->status = 0;
}
- break;
}
return c;
}
-/*
- * UTF-16BE => wchar
- */
int mbfl_filt_conv_utf16be_wchar(int c, mbfl_convert_filter *filter)
{
int n;
switch (filter->status) {
- case 0:
+ case 0: /* First byte */
+ filter->cache = c & 0xFF;
filter->status = 1;
- n = (c & 0xff) << 8;
- filter->cache |= n;
break;
- default:
- filter->status = 0;
- n = (filter->cache & 0xff00) | (c & 0xff);
- if (n >= 0xd800 && n < 0xdc00) {
- filter->cache = ((n & 0x3ff) << 16) + 0x400000;
- } else if (n >= 0xdc00 && n < 0xe000) {
- n &= 0x3ff;
- n |= (filter->cache & 0xfff0000) >> 6;
- filter->cache = 0;
- if (n >= MBFL_WCSPLANE_SUPMIN && n < MBFL_WCSPLANE_SUPMAX) {
- CK((*filter->output_function)(n, filter->data));
- } else { /* illegal character */
- n &= MBFL_WCSGROUP_MASK;
- n |= MBFL_WCSGROUP_THROUGH;
- CK((*filter->output_function)(n, filter->data));
- }
+
+ case 1: /* Second byte */
+ n = (filter->cache << 8) | (c & 0xFF);
+ if (n >= 0xD800 && n <= 0xDBFF) {
+ filter->cache = n & 0x3FF; /* Pick out 10 data bits */
+ filter->status = 2;
+ } else if (n >= 0xDC00 && n <= 0xDFFF) {
+ /* This is wrong; second part of surrogate pair has come first */
+ CK((*filter->output_function)(n | MBFL_WCSGROUP_THROUGH, filter->data));
+ filter->status = 0;
} else {
- filter->cache = 0;
CK((*filter->output_function)(n, filter->data));
+ filter->status = 0;
}
break;
+
+ case 2: /* Second part of surrogate, first byte */
+ filter->cache = (filter->cache << 8) | (c & 0xFF);
+ filter->status = 3;
+ break;
+
+ case 3: /* Second part of surrogate, second byte */
+ n = ((filter->cache & 0xFF) << 8) | (c & 0xFF);
+ if (n >= 0xD800 && n <= 0xDBFF) {
+ /* Wrong; that's the first half of a surrogate pair, not the second */
+ CK((*filter->output_function)((0xD8 << 10) | (filter->cache >> 8) | MBFL_WCSGROUP_THROUGH, filter->data));
+ filter->cache = n & 0x3FF;
+ filter->status = 2;
+ } else if (n >= 0xDC00 && n <= 0xDFFF) {
+ n = ((filter->cache & 0x3FF00) << 2) + (n & 0x3FF) + 0x10000;
+ CK((*filter->output_function)(n, filter->data));
+ filter->status = 0;
+ } else {
+ CK((*filter->output_function)((0xD8 << 10) | (filter->cache >> 8) | MBFL_WCSGROUP_THROUGH, filter->data));
+ CK((*filter->output_function)(n, filter->data));
+ filter->status = 0;
+ }
}
return c;
}
-/*
- * wchar => UTF-16BE
- */
int mbfl_filt_conv_wchar_utf16be(int c, mbfl_convert_filter *filter)
{
int n;
return c;
}
-/*
- * UTF-16LE => wchar
- */
int mbfl_filt_conv_utf16le_wchar(int c, mbfl_convert_filter *filter)
{
+ int n;
+
switch (filter->status) {
case 0:
filter->cache = c & 0xff;
/* This is wrong; the second part of the surrogate pair has come first
* Flag it with `MBFL_WCSGROUP_THROUGH`; the following filter will handle
* the error */
- int n = (filter->cache + ((c & 0xff) << 8)) | MBFL_WCSGROUP_THROUGH;
- filter->status = 0;
+ n = (filter->cache + ((c & 0xff) << 8)) | MBFL_WCSGROUP_THROUGH;
CK((*filter->output_function)(n, filter->data));
- } else {
filter->status = 0;
+ } else {
CK((*filter->output_function)(filter->cache + ((c & 0xff) << 8), filter->data));
+ filter->status = 0;
}
break;
break;
case 3:
- filter->status = 0;
- int n = filter->cache + ((c & 0x3) << 8) + 0x10000;
- CK((*filter->output_function)(n, filter->data));
+ n = (filter->cache & 0xFF) | ((c & 0xFF) << 8);
+ if (n >= 0xD800 && n <= 0xDBFF) {
+ CK((*filter->output_function)((0xD8 << 10) | (filter->cache >> 10) | MBFL_WCSGROUP_THROUGH, filter->data));
+ filter->cache = n & 0x3FF;
+ filter->status = 2;
+ } else if (n >= 0xDC00 && n <= 0xDFFF) {
+ n = filter->cache + ((c & 0x3) << 8) + 0x10000;
+ CK((*filter->output_function)(n, filter->data));
+ filter->status = 0;
+ } else {
+ CK((*filter->output_function)((0xD8 << 10) | (filter->cache >> 10) | MBFL_WCSGROUP_THROUGH, filter->data));
+ CK((*filter->output_function)(n, filter->data));
+ filter->status = 0;
+ }
break;
}
return c;
}
-/*
- * wchar => UTF-16LE
- */
int mbfl_filt_conv_wchar_utf16le(int c, mbfl_convert_filter *filter)
{
int n;
int cache = filter->cache;
filter->status = filter->cache = 0;
- if (status & 0xF) {
+ if (status) {
/* Input string was truncated */
CK((*filter->output_function)(cache | MBFL_WCSGROUP_THROUGH, filter->data));
}