cp936.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /*
  2. * Copyright (C) 2005 Free Software Foundation, Inc.
  3. * This file is part of the GNU LIBICONV Library.
  4. *
  5. * The GNU LIBICONV Library is free software; you can redistribute it
  6. * and/or modify it under the terms of the GNU Library General Public
  7. * License as published by the Free Software Foundation; either version 2
  8. * of the License, or (at your option) any later version.
  9. *
  10. * The GNU LIBICONV Library is distributed in the hope that it will be
  11. * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Library General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Library General Public
  16. * License along with the GNU LIBICONV Library; see the file COPYING.LIB.
  17. * If not, write to the Free Software Foundation, Inc., 51 Franklin Street,
  18. * Fifth Floor, Boston, MA 02110-1301, USA.
  19. */
  20. /*
  21. * CP936
  22. */
  23. /*
  24. * The IANA has CP936 as an alias of GBK. But GBK is an official Chinese
  25. * specification, whereas CP936 is de-facto maintained by Microsoft. And,
  26. * of course, Microsoft modified CP936 since 1999.
  27. *
  28. * The differences from GBK are:
  29. *
  30. * 1. A single character:
  31. *
  32. * code CP936.TXT
  33. * 0x80 0x20AC # EURO SIGN
  34. *
  35. * Some variants of CP936 (in JDK, Windows-2000, ICU) also add:
  36. *
  37. * 2. Private area mappings:
  38. *
  39. * code Unicode
  40. * 0x{A1..A2}{40..7E,80..A0} U+E4C6..U+E585
  41. * 0x{AA..AF,F8..FE}{A1..FE} U+E000..U+E4C5
  42. *
  43. * We add them too because, although there are backward compatibility problems
  44. * when a character from a private area is moved to an official Unicode code
  45. * point, they are useful for some people in practice.
  46. */
  47. static int
  48. cp936_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, int n)
  49. {
  50. /* Try GBK first. */
  51. {
  52. int ret = ces_gbk_mbtowc(conv,pwc,s,n);
  53. if (ret != RET_ILSEQ)
  54. return ret;
  55. }
  56. /* Then handle the additional mappings. */
  57. {
  58. unsigned char c = *s;
  59. if (c == 0x80) {
  60. *pwc = 0x20ac;
  61. return 1;
  62. }
  63. /* User-defined characters */
  64. if (c >= 0xa1 && c <= 0xa2) {
  65. if (n < 2)
  66. return RET_TOOFEW(0);
  67. {
  68. unsigned char c2 = s[1];
  69. if ((c2 >= 0x40 && c2 < 0x7f) || (c2 >= 0x80 && c2 < 0xa1)) {
  70. *pwc = 0xe4c6 + 96 * (c - 0xa1) + (c2 - (c2 >= 0x80 ? 0x41 : 0x40));
  71. return 2;
  72. }
  73. }
  74. } else if ((c >= 0xaa && c < 0xb0) || (c >= 0xf8 && c < 0xff)) {
  75. if (n < 2)
  76. return RET_TOOFEW(0);
  77. {
  78. unsigned char c2 = s[1];
  79. if (c2 >= 0xa1 && c2 < 0xff) {
  80. *pwc = 0xe000 + 94 * (c - (c >= 0xf8 ? 0xf2 : 0xaa)) + (c2 - 0xa1);
  81. return 2;
  82. }
  83. }
  84. }
  85. }
  86. return RET_ILSEQ;
  87. }
  88. static int
  89. cp936_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n)
  90. {
  91. /* Try GBK first. */
  92. {
  93. int ret = ces_gbk_wctomb(conv,r,wc,n);
  94. if (ret != RET_ILUNI)
  95. return ret;
  96. }
  97. /* Then handle the additional mappings. */
  98. if (wc >= 0xe000 && wc < 0xe586) {
  99. /* User-defined characters */
  100. if (n < 2)
  101. return RET_TOOFEW(0);
  102. if (wc < 0xe4c6) {
  103. unsigned int i = wc - 0xe000;
  104. unsigned int c1 = i / 94;
  105. unsigned int c2 = i % 94;
  106. r[0] = c1 + (c1 < 6 ? 0xaa : 0xf2);
  107. r[1] = c2 + 0xa1;
  108. return 2;
  109. } else {
  110. unsigned int i = wc - 0xe4c6;
  111. unsigned int c1 = i / 96;
  112. unsigned int c2 = i % 96;
  113. r[0] = c1 + 0xa1;
  114. r[1] = c2 + (c2 < 0x3f ? 0x40 : 0x41);
  115. return 2;
  116. }
  117. } else if (wc == 0x20ac) {
  118. r[0] = 0x80;
  119. return 1;
  120. }
  121. return RET_ILUNI;
  122. }