wchar.c 6.6 KB
Newer Older
M
Marc G. Fournier 已提交
1
/*
M
 
Marc G. Fournier 已提交
2
 * conversion functions between pg_wchar and multi-byte streams.
M
Marc G. Fournier 已提交
3
 * Tatsuo Ishii
4
 * $Id: wchar.c,v 1.2 1998/08/24 01:14:01 momjian Exp $
M
Marc G. Fournier 已提交
5
 */
M
 
Marc G. Fournier 已提交
6 7

#include "mb/pg_wchar.h"
8

M
Marc G. Fournier 已提交
9
/*
10 11 12 13 14
 * conversion to pg_wchar is done by "table driven."
 * to add an encoding support, define mb2wchar_with_len(), mblen()
 * for the particular encoding. Note that if the encoding is only
 * supported in the client, you don't need to define 
 * mb2wchar_with_len() function (SJIS is the case).
M
Marc G. Fournier 已提交
15
 */
16 17
static void pg_euc2wchar_with_len
(const unsigned char *from, pg_wchar *to, int len)
M
Marc G. Fournier 已提交
18
{
19
  while (*from && len > 0) {
M
Marc G. Fournier 已提交
20 21
    if (*from == SS2) {
      from++;
22 23 24
      len--;
      *to = 0xff & *from++;
      len--;
M
Marc G. Fournier 已提交
25 26 27 28
    } else if (*from == SS3) {
      from++;
      *to = *from++ << 8;
      *to |= 0x3f & *from++;
29
      len -= 3;
M
Marc G. Fournier 已提交
30 31 32
    } else if (*from & 0x80) {
      *to = *from++ << 8;
      *to |= *from++;
33
      len -= 2;
M
Marc G. Fournier 已提交
34 35
    } else {
      *to = *from++;
36
      len--;
M
Marc G. Fournier 已提交
37 38 39 40 41 42
    }
    to++;
  }
  *to = 0;
}

43
static int pg_euc_mblen(const unsigned char *s)
M
Marc G. Fournier 已提交
44
{
45 46 47 48 49 50 51 52 53 54
  int len;

  if (*s == SS2) {
    len = 2;
  } else if (*s == SS3) {
    len = 3;
  } else if (*s & 0x80) {
    len = 2;
  } else {
    len = 1;
M
Marc G. Fournier 已提交
55
  }
56
  return(len);
M
Marc G. Fournier 已提交
57 58 59
}

/*
60
 * EUC_JP
M
Marc G. Fournier 已提交
61
 */
62 63
static void pg_eucjp2wchar_with_len
(const unsigned char *from, pg_wchar *to, int len)
M
Marc G. Fournier 已提交
64
{
65
  pg_euc2wchar_with_len(from,to,len);
M
Marc G. Fournier 已提交
66 67
}

68
static int pg_eucjp_mblen(const unsigned char *s)
M
Marc G. Fournier 已提交
69
{
70
  return(pg_euc_mblen(s));
M
Marc G. Fournier 已提交
71 72 73
}

/*
74
 * EUC_KR
M
Marc G. Fournier 已提交
75
 */
76
static void pg_euckr2wchar_with_len
M
Marc G. Fournier 已提交
77 78 79 80 81
(const unsigned char *from, pg_wchar *to, int len)
{
  pg_euc2wchar_with_len(from,to,len);
}

82
static int pg_euckr_mblen(const unsigned char *s)
M
Marc G. Fournier 已提交
83
{
84
  return(pg_euc_mblen(s));
M
Marc G. Fournier 已提交
85 86
}

87 88 89 90
/*
 * EUC_CN
 */
static void pg_euccn2wchar_with_len
M
Marc G. Fournier 已提交
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
(const unsigned char *from, pg_wchar *to, int len)
{
  while (*from && len > 0) {
    if (*from == SS2) {
      from++;
      len--;
      *to = 0x3f00 & (*from++ << 8);
      *to = *from++;
      len -= 2;
    } else if (*from == SS3) {
      from++;
      *to = *from++ << 8;
      *to |= 0x3f & *from++;
      len -= 3;
    } else if (*from & 0x80) {
      *to = *from++ << 8;
      *to |= *from++;
      len -= 2;
    } else {
      *to = *from++;
      len--;
    }
    to++;
  }
  *to = 0;
}

118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
static int pg_euccn_mblen(const unsigned char *s)
{
  int len;

  if (*s == SS2) {
    len = 3;
  } else if (*s == SS3) {
    len = 3;
  } else if (*s & 0x80) {
    len = 2;
  } else {
    len = 1;
  }
  return(len);
}

/*
 * EUC_TW
 */
static void pg_euctw2wchar_with_len
M
Marc G. Fournier 已提交
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
(const unsigned char *from, pg_wchar *to, int len)
{
  while (*from && len > 0) {
    if (*from == SS2) {
      from++;
      len--;
      *to = *from++ << 16;
      *to |= *from++ << 8;
      *to |= *from++;
      len -= 3;
    } else if (*from == SS3) {
      from++;
      *to = *from++ << 8;
      *to |= 0x3f & *from++;
      len -= 3;
    } else if (*from & 0x80) {
      *to = *from++ << 8;
      *to |= *from++;
      len -= 2;
    } else {
      *to = *from++;
      len--;
    }
    to++;
  }
  *to = 0;
}

166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
static int pg_euctw_mblen(const unsigned char *s)
{
  int len;

  if (*s == SS2) {
    len = 4;
  } else if (*s == SS3) {
    len = 3;
  } else if (*s & 0x80) {
    len = 2;
  } else {
    len = 1;
  }
  return(len);
}

M
Marc G. Fournier 已提交
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
/*
 * convert UTF-8 to pg_wchar (UCS-2)
 * caller should allocate enough space for "to"
 * len: length of from.
 * "from" not necessarily null terminated.
 */
static void pg_utf2wchar_with_len(const unsigned char *from, pg_wchar *to, int len)
{
  unsigned char c1,c2,c3;
  while (*from && len > 0) {
    if ((*from & 0x80) == 0) {
      *to = *from++;
      len--;
    } else if ((*from & 0xe0) == 0xc0) {
      c1 = *from++ & 0x1f;
      c2 = *from++ & 0x3f;
      len -= 2;
      *to = c1 << 6;
      *to |= c2;
    } else if ((*from & 0xe0) == 0xe0) {
      c1 = *from++ & 0x0f;
      c2 = *from++ & 0x3f;
      c3 = *from++ & 0x3f;
      len -= 3;
      *to = c1 << 12;
      *to |= c2 << 6;
      *to |= c3;
    }
    to++;
  }
  *to = 0;
}

215 216 217 218 219 220 221 222 223 224 225 226 227 228
static int pg_utf_mblen(const unsigned char *s)
{
  int len = 1;

  if ((*s & 0x80) == 0) {
    len = 1;
  } else if ((*s & 0xe0) == 0xc0) {
    len = 2;
  } else if ((*s & 0xe0) == 0xe0) {
    len = 3;
  }
  return(len);
}

M
Marc G. Fournier 已提交
229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
/*
 * convert mule internal code to pg_wchar
 * caller should allocate enough space for "to"
 * len: length of from.
 * "from" not necessarily null terminated.
 */
static void pg_mule2wchar_with_len(const unsigned char *from, pg_wchar *to, int len)
{
  while (*from && len > 0) {
    if (IS_LC1(*from)) {
      *to = *from++ << 16;
      *to |= *from++;
      len -= 2;
    } else if (IS_LCPRV1(*from)) {
      from++;
      *to = *from++ << 16;
      *to |= *from++;
      len -= 3;
    } else if (IS_LC2(*from)) {
      *to = *from++ << 16;
      *to |= *from++ << 8;
      *to |= *from++;
      len -= 3;
    } else if (IS_LCPRV2(*from)) {
      from++;
      *to = *from++ << 16;
      *to |= *from++ << 8;
      *to |= *from++;
      len -= 4;
    } else {	/* assume ASCII */
      *to = (unsigned char)*from++;
      len--;
    }
    to++;
  }
  *to = 0;
}

M
 
Marc G. Fournier 已提交
267
int pg_mule_mblen(const unsigned char *s)
M
Marc G. Fournier 已提交
268 269 270
{
  int len;

271
  if (IS_LC1(*s)) {
M
Marc G. Fournier 已提交
272
    len = 2;
273
  } else if (IS_LCPRV1(*s)) {
M
Marc G. Fournier 已提交
274
    len = 3;
275
  } else if (IS_LC2(*s)) {
M
Marc G. Fournier 已提交
276
    len = 3;
277 278 279
  } else if (IS_LCPRV2(*s)) {
    len = 4;
  } else {	/* assume ASCII */
M
Marc G. Fournier 已提交
280 281 282 283 284
    len = 1;
  }
  return(len);
}

285 286 287 288
/*
 * ISO8859-1
 */
static void pg_latin12wchar_with_len(const unsigned char *from, pg_wchar *to, int len)
M
Marc G. Fournier 已提交
289
{
290 291
  while (*from && len-- > 0) {
    *to++ = *from++;
M
Marc G. Fournier 已提交
292
  }
293
  *to = 0;
M
Marc G. Fournier 已提交
294 295
}

296
static int pg_latin1_mblen(const unsigned char *s)
M
Marc G. Fournier 已提交
297
{
298
  return(1);
M
Marc G. Fournier 已提交
299 300
}

301 302 303 304
/*
 * SJIS
 */
static int pg_sjis_mblen(const unsigned char *s)
M
Marc G. Fournier 已提交
305 306 307
{
  int len;

308 309 310
  if (*s >= 0xa1 && *s <= 0xdf) {	/* 1 byte kana? */
    len = 1;
  } else if (*s > 0x7f) {	/* kanji? */
M
Marc G. Fournier 已提交
311
    len = 2;
312
  } else {	/* should be ASCII */
M
Marc G. Fournier 已提交
313 314 315 316 317
    len = 1;
  }
  return(len);
}

M
 
Marc G. Fournier 已提交
318
pg_wchar_tbl pg_wchar_table[] = {
319
  {0, 0},
320 321 322 323 324 325 326
  {pg_eucjp2wchar_with_len, pg_eucjp_mblen},
  {pg_euccn2wchar_with_len, pg_euccn_mblen},
  {pg_euckr2wchar_with_len, pg_euckr_mblen},
  {pg_euctw2wchar_with_len, pg_euctw_mblen},
  {pg_utf2wchar_with_len, pg_utf_mblen},
  {pg_mule2wchar_with_len, pg_mule_mblen},
  {pg_latin12wchar_with_len, pg_latin1_mblen},
M
 
Marc G. Fournier 已提交
327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342
  {pg_latin12wchar_with_len, pg_latin1_mblen},
  {pg_latin12wchar_with_len, pg_latin1_mblen},
  {pg_latin12wchar_with_len, pg_latin1_mblen},
  {pg_latin12wchar_with_len, pg_latin1_mblen},
  {0, 0},
  {0, 0},
  {0, 0},
  {0, 0},
  {0, 0},
  {0, 0},
  {0, 0},
  {0, 0},
  {0, 0},
  {0, 0},
  {0, 0},
  {0, 0},
343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
  {0, 0},
  {0, 0},
  {0, 0},
  {0, 0},
  {0, 0},
  {0, 0},
  {0, 0},
  {0, 0},
  {0, pg_sjis_mblen}
};

/* returns the byte length of a word for mule internal code */
int pg_mic_mblen(const unsigned char *mbstr)
{
  return(pg_mule_mblen(mbstr));
}