2000-06-09 07:27:21 +02:00
|
|
|
/*
|
|
|
|
* WideCharToMultiByte implementation
|
|
|
|
*
|
|
|
|
* Copyright 2000 Alexandre Julliard
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2000-06-09 07:27:21 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "wine/unicode.h"
|
|
|
|
|
2000-12-29 04:56:06 +01:00
|
|
|
/* search for a character in the unicode_compose_table; helper for compose() */
|
|
|
|
static inline int binary_search( WCHAR ch, int low, int high )
|
|
|
|
{
|
|
|
|
extern const WCHAR unicode_compose_table[];
|
|
|
|
while (low <= high)
|
|
|
|
{
|
|
|
|
int pos = (low + high) / 2;
|
|
|
|
if (unicode_compose_table[2*pos] < ch)
|
|
|
|
{
|
|
|
|
low = pos + 1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (unicode_compose_table[2*pos] > ch)
|
|
|
|
{
|
|
|
|
high = pos - 1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
return pos;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* return the result of the composition of two Unicode chars, or 0 if none */
|
|
|
|
static WCHAR compose( const WCHAR *str )
|
|
|
|
{
|
|
|
|
extern const WCHAR unicode_compose_table[];
|
|
|
|
extern const unsigned int unicode_compose_table_size;
|
|
|
|
|
|
|
|
int idx = 1, low = 0, high = unicode_compose_table_size - 1;
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
int pos = binary_search( str[idx], low, high );
|
|
|
|
if (pos == -1) return 0;
|
|
|
|
if (!idx--) return unicode_compose_table[2*pos+1];
|
|
|
|
low = unicode_compose_table[2*pos+1];
|
|
|
|
high = unicode_compose_table[2*pos+3] - 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/****************************************************************/
|
|
|
|
/* sbcs support */
|
|
|
|
|
|
|
|
/* check if 'ch' is an acceptable sbcs mapping for 'wch' */
|
|
|
|
static inline int is_valid_sbcs_mapping( const struct sbcs_table *table, int flags,
|
|
|
|
WCHAR wch, unsigned char ch )
|
|
|
|
{
|
|
|
|
if (flags & WC_NO_BEST_FIT_CHARS) return (table->cp2uni[ch] == wch);
|
|
|
|
if (ch != (unsigned char)table->info.def_char) return 1;
|
|
|
|
return (wch == table->info.def_unicode_char);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* query necessary dst length for src string */
|
2002-04-11 19:36:09 +02:00
|
|
|
static int get_length_sbcs( const struct sbcs_table *table, int flags,
|
|
|
|
const WCHAR *src, unsigned int srclen, int *used )
|
2000-12-29 04:56:06 +01:00
|
|
|
{
|
2002-04-11 19:36:09 +02:00
|
|
|
const unsigned char * const uni2cp_low = table->uni2cp_low;
|
|
|
|
const unsigned short * const uni2cp_high = table->uni2cp_high;
|
|
|
|
int ret, tmp;
|
|
|
|
WCHAR composed;
|
|
|
|
|
|
|
|
if (!used) used = &tmp; /* avoid checking on every char */
|
|
|
|
*used = 0;
|
2000-12-29 04:56:06 +01:00
|
|
|
|
2002-04-11 19:36:09 +02:00
|
|
|
for (ret = 0; srclen; ret++, src++, srclen--)
|
2000-12-29 04:56:06 +01:00
|
|
|
{
|
2002-04-11 19:36:09 +02:00
|
|
|
WCHAR wch = *src;
|
|
|
|
unsigned char ch;
|
2000-12-29 04:56:06 +01:00
|
|
|
|
2002-04-11 19:36:09 +02:00
|
|
|
if ((flags & WC_COMPOSITECHECK) && (srclen > 1) && (composed = compose(src)))
|
2000-12-29 04:56:06 +01:00
|
|
|
{
|
2002-04-11 19:36:09 +02:00
|
|
|
/* now check if we can use the composed char */
|
|
|
|
ch = uni2cp_low[uni2cp_high[composed >> 8] + (composed & 0xff)];
|
|
|
|
if (is_valid_sbcs_mapping( table, flags, composed, ch ))
|
|
|
|
{
|
|
|
|
/* we have a good mapping, use it */
|
|
|
|
src++;
|
|
|
|
srclen--;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/* no mapping for the composed char, check the other flags */
|
|
|
|
if (flags & WC_DEFAULTCHAR) /* use the default char instead */
|
|
|
|
{
|
|
|
|
*used = 1;
|
|
|
|
src++; /* skip the non-spacing char */
|
|
|
|
srclen--;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (flags & WC_DISCARDNS) /* skip the second char of the composition */
|
2000-12-29 04:56:06 +01:00
|
|
|
{
|
2002-04-11 19:36:09 +02:00
|
|
|
src++;
|
|
|
|
srclen--;
|
2000-12-29 04:56:06 +01:00
|
|
|
}
|
2002-04-11 19:36:09 +02:00
|
|
|
/* WC_SEPCHARS is the default */
|
|
|
|
}
|
|
|
|
if (!*used)
|
|
|
|
{
|
|
|
|
ch = uni2cp_low[uni2cp_high[wch >> 8] + (wch & 0xff)];
|
|
|
|
*used = !is_valid_sbcs_mapping( table, flags, wch, ch );
|
2000-12-29 04:56:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2000-06-09 07:27:21 +02:00
|
|
|
/* wcstombs for single-byte code page */
|
|
|
|
static inline int wcstombs_sbcs( const struct sbcs_table *table,
|
2000-06-12 03:16:11 +02:00
|
|
|
const WCHAR *src, unsigned int srclen,
|
2000-06-09 07:27:21 +02:00
|
|
|
char *dst, unsigned int dstlen )
|
|
|
|
{
|
|
|
|
const unsigned char * const uni2cp_low = table->uni2cp_low;
|
|
|
|
const unsigned short * const uni2cp_high = table->uni2cp_high;
|
|
|
|
int ret = srclen;
|
|
|
|
|
|
|
|
if (dstlen < srclen)
|
|
|
|
{
|
|
|
|
/* buffer too small: fill it up to dstlen and return error */
|
|
|
|
srclen = dstlen;
|
|
|
|
ret = -1;
|
|
|
|
}
|
|
|
|
|
2005-07-22 11:23:16 +02:00
|
|
|
while (srclen >= 16)
|
2003-05-11 04:54:09 +02:00
|
|
|
{
|
2005-07-22 11:23:16 +02:00
|
|
|
dst[0] = uni2cp_low[uni2cp_high[src[0] >> 8] + (src[0] & 0xff)];
|
|
|
|
dst[1] = uni2cp_low[uni2cp_high[src[1] >> 8] + (src[1] & 0xff)];
|
|
|
|
dst[2] = uni2cp_low[uni2cp_high[src[2] >> 8] + (src[2] & 0xff)];
|
|
|
|
dst[3] = uni2cp_low[uni2cp_high[src[3] >> 8] + (src[3] & 0xff)];
|
|
|
|
dst[4] = uni2cp_low[uni2cp_high[src[4] >> 8] + (src[4] & 0xff)];
|
|
|
|
dst[5] = uni2cp_low[uni2cp_high[src[5] >> 8] + (src[5] & 0xff)];
|
|
|
|
dst[6] = uni2cp_low[uni2cp_high[src[6] >> 8] + (src[6] & 0xff)];
|
|
|
|
dst[7] = uni2cp_low[uni2cp_high[src[7] >> 8] + (src[7] & 0xff)];
|
|
|
|
dst[8] = uni2cp_low[uni2cp_high[src[8] >> 8] + (src[8] & 0xff)];
|
|
|
|
dst[9] = uni2cp_low[uni2cp_high[src[9] >> 8] + (src[9] & 0xff)];
|
|
|
|
dst[10] = uni2cp_low[uni2cp_high[src[10] >> 8] + (src[10] & 0xff)];
|
|
|
|
dst[11] = uni2cp_low[uni2cp_high[src[11] >> 8] + (src[11] & 0xff)];
|
|
|
|
dst[12] = uni2cp_low[uni2cp_high[src[12] >> 8] + (src[12] & 0xff)];
|
|
|
|
dst[13] = uni2cp_low[uni2cp_high[src[13] >> 8] + (src[13] & 0xff)];
|
|
|
|
dst[14] = uni2cp_low[uni2cp_high[src[14] >> 8] + (src[14] & 0xff)];
|
|
|
|
dst[15] = uni2cp_low[uni2cp_high[src[15] >> 8] + (src[15] & 0xff)];
|
|
|
|
src += 16;
|
|
|
|
dst += 16;
|
|
|
|
srclen -= 16;
|
2003-05-11 04:54:09 +02:00
|
|
|
}
|
|
|
|
|
2005-07-22 11:23:16 +02:00
|
|
|
/* now handle remaining characters */
|
|
|
|
src += srclen;
|
|
|
|
dst += srclen;
|
|
|
|
switch(srclen)
|
2000-06-09 07:27:21 +02:00
|
|
|
{
|
2005-07-22 11:23:16 +02:00
|
|
|
case 15: dst[-15] = uni2cp_low[uni2cp_high[src[-15] >> 8] + (src[-15] & 0xff)];
|
|
|
|
case 14: dst[-14] = uni2cp_low[uni2cp_high[src[-14] >> 8] + (src[-14] & 0xff)];
|
|
|
|
case 13: dst[-13] = uni2cp_low[uni2cp_high[src[-13] >> 8] + (src[-13] & 0xff)];
|
|
|
|
case 12: dst[-12] = uni2cp_low[uni2cp_high[src[-12] >> 8] + (src[-12] & 0xff)];
|
|
|
|
case 11: dst[-11] = uni2cp_low[uni2cp_high[src[-11] >> 8] + (src[-11] & 0xff)];
|
|
|
|
case 10: dst[-10] = uni2cp_low[uni2cp_high[src[-10] >> 8] + (src[-10] & 0xff)];
|
|
|
|
case 9: dst[-9] = uni2cp_low[uni2cp_high[src[-9] >> 8] + (src[-9] & 0xff)];
|
|
|
|
case 8: dst[-8] = uni2cp_low[uni2cp_high[src[-8] >> 8] + (src[-8] & 0xff)];
|
|
|
|
case 7: dst[-7] = uni2cp_low[uni2cp_high[src[-7] >> 8] + (src[-7] & 0xff)];
|
|
|
|
case 6: dst[-6] = uni2cp_low[uni2cp_high[src[-6] >> 8] + (src[-6] & 0xff)];
|
|
|
|
case 5: dst[-5] = uni2cp_low[uni2cp_high[src[-5] >> 8] + (src[-5] & 0xff)];
|
|
|
|
case 4: dst[-4] = uni2cp_low[uni2cp_high[src[-4] >> 8] + (src[-4] & 0xff)];
|
|
|
|
case 3: dst[-3] = uni2cp_low[uni2cp_high[src[-3] >> 8] + (src[-3] & 0xff)];
|
|
|
|
case 2: dst[-2] = uni2cp_low[uni2cp_high[src[-2] >> 8] + (src[-2] & 0xff)];
|
|
|
|
case 1: dst[-1] = uni2cp_low[uni2cp_high[src[-1] >> 8] + (src[-1] & 0xff)];
|
|
|
|
case 0: break;
|
2000-06-09 07:27:21 +02:00
|
|
|
}
|
2005-07-22 11:23:16 +02:00
|
|
|
return ret;
|
2000-06-09 07:27:21 +02:00
|
|
|
}
|
|
|
|
|
2000-06-10 06:29:16 +02:00
|
|
|
/* slow version of wcstombs_sbcs that handles the various flags */
|
|
|
|
static int wcstombs_sbcs_slow( const struct sbcs_table *table, int flags,
|
2000-06-12 03:16:11 +02:00
|
|
|
const WCHAR *src, unsigned int srclen,
|
2000-06-10 06:29:16 +02:00
|
|
|
char *dst, unsigned int dstlen,
|
|
|
|
const char *defchar, int *used )
|
|
|
|
{
|
|
|
|
const unsigned char * const uni2cp_low = table->uni2cp_low;
|
|
|
|
const unsigned short * const uni2cp_high = table->uni2cp_high;
|
2005-08-03 16:54:38 +02:00
|
|
|
unsigned char def;
|
2000-12-29 04:56:06 +01:00
|
|
|
unsigned int len;
|
|
|
|
int tmp;
|
|
|
|
WCHAR composed;
|
2000-06-10 06:29:16 +02:00
|
|
|
|
2005-08-03 16:54:38 +02:00
|
|
|
if (!defchar)
|
|
|
|
def = table->info.def_char & 0xff;
|
|
|
|
else
|
|
|
|
def = *defchar;
|
|
|
|
|
2000-06-10 06:29:16 +02:00
|
|
|
if (!used) used = &tmp; /* avoid checking on every char */
|
2001-04-04 20:31:13 +02:00
|
|
|
*used = 0;
|
2000-06-10 06:29:16 +02:00
|
|
|
|
2000-12-29 04:56:06 +01:00
|
|
|
for (len = dstlen; srclen && len; dst++, len--, src++, srclen--)
|
2000-06-10 06:29:16 +02:00
|
|
|
{
|
2000-12-29 04:56:06 +01:00
|
|
|
WCHAR wch = *src;
|
|
|
|
|
|
|
|
if ((flags & WC_COMPOSITECHECK) && (srclen > 1) && (composed = compose(src)))
|
|
|
|
{
|
|
|
|
/* now check if we can use the composed char */
|
|
|
|
*dst = uni2cp_low[uni2cp_high[composed >> 8] + (composed & 0xff)];
|
|
|
|
if (is_valid_sbcs_mapping( table, flags, composed, *dst ))
|
|
|
|
{
|
|
|
|
/* we have a good mapping, use it */
|
|
|
|
src++;
|
|
|
|
srclen--;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/* no mapping for the composed char, check the other flags */
|
|
|
|
if (flags & WC_DEFAULTCHAR) /* use the default char instead */
|
|
|
|
{
|
2005-08-03 16:54:38 +02:00
|
|
|
*dst = def;
|
2000-12-29 04:56:06 +01:00
|
|
|
*used = 1;
|
|
|
|
src++; /* skip the non-spacing char */
|
|
|
|
srclen--;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (flags & WC_DISCARDNS) /* skip the second char of the composition */
|
|
|
|
{
|
|
|
|
src++;
|
|
|
|
srclen--;
|
|
|
|
}
|
|
|
|
/* WC_SEPCHARS is the default */
|
|
|
|
}
|
|
|
|
|
|
|
|
*dst = uni2cp_low[uni2cp_high[wch >> 8] + (wch & 0xff)];
|
|
|
|
if (!is_valid_sbcs_mapping( table, flags, wch, *dst ))
|
2000-06-10 06:29:16 +02:00
|
|
|
{
|
2005-08-03 16:54:38 +02:00
|
|
|
*dst = def;
|
2000-06-10 06:29:16 +02:00
|
|
|
*used = 1;
|
|
|
|
}
|
|
|
|
}
|
2000-12-29 04:56:06 +01:00
|
|
|
if (srclen) return -1; /* overflow */
|
|
|
|
return dstlen - len;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/****************************************************************/
|
|
|
|
/* dbcs support */
|
|
|
|
|
|
|
|
/* check if 'ch' is an acceptable dbcs mapping for 'wch' */
|
|
|
|
static inline int is_valid_dbcs_mapping( const struct dbcs_table *table, int flags,
|
|
|
|
WCHAR wch, unsigned short ch )
|
|
|
|
{
|
|
|
|
if (ch == table->info.def_char && wch != table->info.def_unicode_char) return 0;
|
|
|
|
if (flags & WC_NO_BEST_FIT_CHARS)
|
|
|
|
{
|
|
|
|
/* check if char maps back to the same Unicode value */
|
|
|
|
if (ch & 0xff00)
|
|
|
|
{
|
|
|
|
unsigned char off = table->cp2uni_leadbytes[ch >> 8];
|
|
|
|
return (table->cp2uni[(off << 8) + (ch & 0xff)] == wch);
|
|
|
|
}
|
|
|
|
return (table->cp2uni[ch & 0xff] == wch);
|
|
|
|
}
|
|
|
|
return 1;
|
2000-06-10 06:29:16 +02:00
|
|
|
}
|
|
|
|
|
2000-06-09 07:27:21 +02:00
|
|
|
/* query necessary dst length for src string */
|
2000-12-29 04:56:06 +01:00
|
|
|
static int get_length_dbcs( const struct dbcs_table *table, int flags,
|
|
|
|
const WCHAR *src, unsigned int srclen,
|
2002-04-11 19:36:09 +02:00
|
|
|
const char *defchar, int *used )
|
2000-06-09 07:27:21 +02:00
|
|
|
{
|
|
|
|
const unsigned short * const uni2cp_low = table->uni2cp_low;
|
|
|
|
const unsigned short * const uni2cp_high = table->uni2cp_high;
|
2000-12-29 04:56:06 +01:00
|
|
|
WCHAR defchar_value = table->info.def_char;
|
|
|
|
WCHAR composed;
|
2002-04-11 19:36:09 +02:00
|
|
|
int len, tmp;
|
2000-06-09 07:27:21 +02:00
|
|
|
|
2002-04-11 19:36:09 +02:00
|
|
|
if (!defchar && !used && !(flags & WC_COMPOSITECHECK))
|
2000-06-09 07:27:21 +02:00
|
|
|
{
|
2000-12-29 04:56:06 +01:00
|
|
|
for (len = 0; srclen; srclen--, src++, len++)
|
|
|
|
{
|
|
|
|
if (uni2cp_low[uni2cp_high[*src >> 8] + (*src & 0xff)] & 0xff00) len++;
|
|
|
|
}
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (defchar) defchar_value = defchar[1] ? ((defchar[0] << 8) | defchar[1]) : defchar[0];
|
2002-04-11 19:36:09 +02:00
|
|
|
if (!used) used = &tmp; /* avoid checking on every char */
|
|
|
|
*used = 0;
|
2000-12-29 04:56:06 +01:00
|
|
|
for (len = 0; srclen; len++, srclen--, src++)
|
|
|
|
{
|
|
|
|
unsigned short res;
|
|
|
|
WCHAR wch = *src;
|
|
|
|
|
|
|
|
if ((flags & WC_COMPOSITECHECK) && (srclen > 1) && (composed = compose(src)))
|
|
|
|
{
|
|
|
|
/* now check if we can use the composed char */
|
|
|
|
res = uni2cp_low[uni2cp_high[composed >> 8] + (composed & 0xff)];
|
|
|
|
|
|
|
|
if (is_valid_dbcs_mapping( table, flags, composed, res ))
|
|
|
|
{
|
|
|
|
/* we have a good mapping for the composed char, use it */
|
|
|
|
if (res & 0xff00) len++;
|
|
|
|
src++;
|
|
|
|
srclen--;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/* no mapping for the composed char, check the other flags */
|
|
|
|
if (flags & WC_DEFAULTCHAR) /* use the default char instead */
|
|
|
|
{
|
|
|
|
if (defchar_value & 0xff00) len++;
|
2002-04-11 19:36:09 +02:00
|
|
|
*used = 1;
|
2000-12-29 04:56:06 +01:00
|
|
|
src++; /* skip the non-spacing char */
|
|
|
|
srclen--;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (flags & WC_DISCARDNS) /* skip the second char of the composition */
|
|
|
|
{
|
|
|
|
src++;
|
|
|
|
srclen--;
|
|
|
|
}
|
|
|
|
/* WC_SEPCHARS is the default */
|
|
|
|
}
|
|
|
|
|
|
|
|
res = uni2cp_low[uni2cp_high[wch >> 8] + (wch & 0xff)];
|
2002-04-11 19:36:09 +02:00
|
|
|
if (!is_valid_dbcs_mapping( table, flags, wch, res ))
|
|
|
|
{
|
|
|
|
res = defchar_value;
|
|
|
|
*used = 1;
|
|
|
|
}
|
2000-12-29 04:56:06 +01:00
|
|
|
if (res & 0xff00) len++;
|
2000-06-09 07:27:21 +02:00
|
|
|
}
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* wcstombs for double-byte code page */
|
|
|
|
static inline int wcstombs_dbcs( const struct dbcs_table *table,
|
2000-06-12 03:16:11 +02:00
|
|
|
const WCHAR *src, unsigned int srclen,
|
2000-06-09 07:27:21 +02:00
|
|
|
char *dst, unsigned int dstlen )
|
|
|
|
{
|
|
|
|
const unsigned short * const uni2cp_low = table->uni2cp_low;
|
|
|
|
const unsigned short * const uni2cp_high = table->uni2cp_high;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
for (len = dstlen; srclen && len; len--, srclen--, src++)
|
|
|
|
{
|
|
|
|
unsigned short res = uni2cp_low[uni2cp_high[*src >> 8] + (*src & 0xff)];
|
|
|
|
if (res & 0xff00)
|
|
|
|
{
|
|
|
|
if (len == 1) break; /* do not output a partial char */
|
|
|
|
len--;
|
|
|
|
*dst++ = res >> 8;
|
|
|
|
}
|
|
|
|
*dst++ = (char)res;
|
|
|
|
}
|
|
|
|
if (srclen) return -1; /* overflow */
|
|
|
|
return dstlen - len;
|
|
|
|
}
|
|
|
|
|
2000-06-10 06:29:16 +02:00
|
|
|
/* slow version of wcstombs_dbcs that handles the various flags */
|
|
|
|
static int wcstombs_dbcs_slow( const struct dbcs_table *table, int flags,
|
2000-06-12 03:16:11 +02:00
|
|
|
const WCHAR *src, unsigned int srclen,
|
2000-06-10 06:29:16 +02:00
|
|
|
char *dst, unsigned int dstlen,
|
|
|
|
const char *defchar, int *used )
|
|
|
|
{
|
|
|
|
const unsigned short * const uni2cp_low = table->uni2cp_low;
|
|
|
|
const unsigned short * const uni2cp_high = table->uni2cp_high;
|
2000-06-12 03:16:11 +02:00
|
|
|
WCHAR defchar_value = table->info.def_char;
|
2000-12-29 04:56:06 +01:00
|
|
|
WCHAR composed;
|
2000-06-10 06:29:16 +02:00
|
|
|
int len, tmp;
|
|
|
|
|
|
|
|
if (defchar) defchar_value = defchar[1] ? ((defchar[0] << 8) | defchar[1]) : defchar[0];
|
|
|
|
if (!used) used = &tmp; /* avoid checking on every char */
|
2001-04-04 20:31:13 +02:00
|
|
|
*used = 0;
|
2000-06-10 06:29:16 +02:00
|
|
|
|
|
|
|
for (len = dstlen; srclen && len; len--, srclen--, src++)
|
|
|
|
{
|
2000-12-29 04:56:06 +01:00
|
|
|
unsigned short res;
|
|
|
|
WCHAR wch = *src;
|
2000-06-10 06:29:16 +02:00
|
|
|
|
2000-12-29 04:56:06 +01:00
|
|
|
if ((flags & WC_COMPOSITECHECK) && (srclen > 1) && (composed = compose(src)))
|
2000-06-10 06:29:16 +02:00
|
|
|
{
|
2000-12-29 04:56:06 +01:00
|
|
|
/* now check if we can use the composed char */
|
|
|
|
res = uni2cp_low[uni2cp_high[composed >> 8] + (composed & 0xff)];
|
|
|
|
|
|
|
|
if (is_valid_dbcs_mapping( table, flags, composed, res ))
|
2000-06-10 06:29:16 +02:00
|
|
|
{
|
2000-12-29 04:56:06 +01:00
|
|
|
/* we have a good mapping for the composed char, use it */
|
|
|
|
src++;
|
|
|
|
srclen--;
|
|
|
|
goto output_char;
|
2000-06-10 06:29:16 +02:00
|
|
|
}
|
2000-12-29 04:56:06 +01:00
|
|
|
/* no mapping for the composed char, check the other flags */
|
|
|
|
if (flags & WC_DEFAULTCHAR) /* use the default char instead */
|
2000-06-10 06:29:16 +02:00
|
|
|
{
|
|
|
|
res = defchar_value;
|
|
|
|
*used = 1;
|
2000-12-29 04:56:06 +01:00
|
|
|
src++; /* skip the non-spacing char */
|
|
|
|
srclen--;
|
|
|
|
goto output_char;
|
|
|
|
}
|
|
|
|
if (flags & WC_DISCARDNS) /* skip the second char of the composition */
|
|
|
|
{
|
|
|
|
src++;
|
|
|
|
srclen--;
|
2000-06-10 06:29:16 +02:00
|
|
|
}
|
2000-12-29 04:56:06 +01:00
|
|
|
/* WC_SEPCHARS is the default */
|
|
|
|
}
|
|
|
|
|
|
|
|
res = uni2cp_low[uni2cp_high[wch >> 8] + (wch & 0xff)];
|
|
|
|
if (!is_valid_dbcs_mapping( table, flags, wch, res ))
|
|
|
|
{
|
|
|
|
res = defchar_value;
|
|
|
|
*used = 1;
|
2000-06-10 06:29:16 +02:00
|
|
|
}
|
|
|
|
|
2000-12-29 04:56:06 +01:00
|
|
|
output_char:
|
2000-06-10 06:29:16 +02:00
|
|
|
if (res & 0xff00)
|
|
|
|
{
|
|
|
|
if (len == 1) break; /* do not output a partial char */
|
|
|
|
len--;
|
|
|
|
*dst++ = res >> 8;
|
|
|
|
}
|
|
|
|
*dst++ = (char)res;
|
|
|
|
}
|
|
|
|
if (srclen) return -1; /* overflow */
|
|
|
|
return dstlen - len;
|
|
|
|
}
|
|
|
|
|
2000-06-09 07:27:21 +02:00
|
|
|
/* wide char to multi byte string conversion */
|
|
|
|
/* return -1 on dst buffer overflow */
|
2003-03-21 22:30:51 +01:00
|
|
|
int wine_cp_wcstombs( const union cptable *table, int flags,
|
|
|
|
const WCHAR *src, int srclen,
|
|
|
|
char *dst, int dstlen, const char *defchar, int *used )
|
2000-06-09 07:27:21 +02:00
|
|
|
{
|
|
|
|
if (table->info.char_size == 1)
|
|
|
|
{
|
2000-06-10 06:29:16 +02:00
|
|
|
if (flags || defchar || used)
|
2002-04-11 19:36:09 +02:00
|
|
|
{
|
|
|
|
if (!dstlen) return get_length_sbcs( &table->sbcs, flags, src, srclen, used );
|
2000-06-10 06:29:16 +02:00
|
|
|
return wcstombs_sbcs_slow( &table->sbcs, flags, src, srclen,
|
|
|
|
dst, dstlen, defchar, used );
|
2002-04-11 19:36:09 +02:00
|
|
|
}
|
|
|
|
if (!dstlen) return srclen;
|
2000-06-09 07:27:21 +02:00
|
|
|
return wcstombs_sbcs( &table->sbcs, src, srclen, dst, dstlen );
|
|
|
|
}
|
|
|
|
else /* mbcs */
|
|
|
|
{
|
2002-04-11 19:36:09 +02:00
|
|
|
if (!dstlen) return get_length_dbcs( &table->dbcs, flags, src, srclen, defchar, used );
|
2000-06-10 06:29:16 +02:00
|
|
|
if (flags || defchar || used)
|
|
|
|
return wcstombs_dbcs_slow( &table->dbcs, flags, src, srclen,
|
|
|
|
dst, dstlen, defchar, used );
|
2000-06-13 06:34:41 +02:00
|
|
|
return wcstombs_dbcs( &table->dbcs, src, srclen, dst, dstlen );
|
2000-06-09 07:27:21 +02:00
|
|
|
}
|
|
|
|
}
|
2004-01-20 23:39:06 +01:00
|
|
|
|
|
|
|
/* CP_SYMBOL implementation */
|
|
|
|
/* return -1 on dst buffer overflow, -2 on invalid character */
|
|
|
|
int wine_cpsymbol_wcstombs( const WCHAR *src, int srclen, char *dst, int dstlen)
|
|
|
|
{
|
|
|
|
int len, i;
|
|
|
|
if( dstlen == 0) return srclen;
|
|
|
|
len = dstlen > srclen ? srclen : dstlen;
|
|
|
|
for( i = 0; i < len; i++)
|
|
|
|
{
|
|
|
|
WCHAR w = src [ i ];
|
|
|
|
if( w < 0x20 )
|
|
|
|
dst[i] = w;
|
|
|
|
else if( w >= 0xf020 && w < 0xf100)
|
|
|
|
dst[i] = w - 0xf000;
|
|
|
|
else
|
|
|
|
return -2;
|
|
|
|
}
|
|
|
|
if( srclen > len) return -1;
|
|
|
|
return len;
|
|
|
|
}
|