sjis.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. /*
  2. * Copyright (C) 1999-2002, 2016 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 Lesser General Public
  7. * License as published by the Free Software Foundation; either version 2.1
  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. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with the GNU LIBICONV Library; see the file COPYING.LIB.
  17. * If not, see <https://www.gnu.org/licenses/>.
  18. */
  19. /*
  20. * SHIFT_JIS
  21. */
  22. /*
  23. Conversion between SJIS codes (s1,s2) and JISX0208 codes (c1,c2):
  24. Example. (s1,s2) = 0x8140, (c1,c2) = 0x2121.
  25. 0x81 <= s1 <= 0x9F || 0xE0 <= s1 <= 0xEA,
  26. 0x40 <= s2 <= 0x7E || 0x80 <= s2 <= 0xFC,
  27. 0x21 <= c1 <= 0x74, 0x21 <= c2 <= 0x7E.
  28. Invariant:
  29. 94*2*(s1 < 0xE0 ? s1-0x81 : s1-0xC1) + (s2 < 0x80 ? s2-0x40 : s2-0x41)
  30. = 94*(c1-0x21)+(c2-0x21)
  31. Conversion (s1,s2) -> (c1,c2):
  32. t1 := (s1 < 0xE0 ? s1-0x81 : s1-0xC1)
  33. t2 := (s2 < 0x80 ? s2-0x40 : s2-0x41)
  34. c1 := 2*t1 + (t2 < 0x5E ? 0 : 1) + 0x21
  35. c2 := (t2 < 0x5E ? t2 : t2-0x5E) + 0x21
  36. Conversion (c1,c2) -> (s1,s2):
  37. t1 := (c1 - 0x21) >> 1
  38. t2 := ((c1 - 0x21) & 1) * 0x5E + (c2 - 0x21)
  39. s1 := (t1 < 0x1F ? t1+0x81 : t1+0xC1)
  40. s2 := (t2 < 0x3F ? t2+0x40 : t2+0x41)
  41. */
  42. static int
  43. sjis_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)
  44. {
  45. unsigned char c = *s;
  46. if (c < 0x80 || (c >= 0xa1 && c <= 0xdf))
  47. return jisx0201_mbtowc(conv,pwc,s,n);
  48. else {
  49. unsigned char s1, s2;
  50. s1 = c;
  51. if ((s1 >= 0x81 && s1 <= 0x9f) || (s1 >= 0xe0 && s1 <= 0xea)) {
  52. if (n < 2)
  53. return RET_TOOFEW(0);
  54. s2 = s[1];
  55. if ((s2 >= 0x40 && s2 <= 0x7e) || (s2 >= 0x80 && s2 <= 0xfc)) {
  56. unsigned char t1 = (s1 < 0xe0 ? s1-0x81 : s1-0xc1);
  57. unsigned char t2 = (s2 < 0x80 ? s2-0x40 : s2-0x41);
  58. unsigned char buf[2];
  59. buf[0] = 2*t1 + (t2 < 0x5e ? 0 : 1) + 0x21;
  60. buf[1] = (t2 < 0x5e ? t2 : t2-0x5e) + 0x21;
  61. return jisx0208_mbtowc(conv,pwc,buf,2);
  62. }
  63. } else if (s1 >= 0xf0 && s1 <= 0xf9) {
  64. /* User-defined range. See
  65. * Ken Lunde's "CJKV Information Processing", table 4-66, p. 206. */
  66. if (n < 2)
  67. return RET_TOOFEW(0);
  68. s2 = s[1];
  69. if ((s2 >= 0x40 && s2 <= 0x7e) || (s2 >= 0x80 && s2 <= 0xfc)) {
  70. *pwc = 0xe000 + 188*(s1 - 0xf0) + (s2 < 0x80 ? s2-0x40 : s2-0x41);
  71. return 2;
  72. }
  73. }
  74. return RET_ILSEQ;
  75. }
  76. }
  77. static int
  78. sjis_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)
  79. {
  80. unsigned char buf[2];
  81. int ret;
  82. /* Try JIS X 0201-1976. */
  83. ret = jisx0201_wctomb(conv,buf,wc,1);
  84. if (ret != RET_ILUNI) {
  85. unsigned char c;
  86. if (ret != 1) abort();
  87. c = buf[0];
  88. if (c < 0x80 || (c >= 0xa1 && c <= 0xdf)) {
  89. r[0] = c;
  90. return 1;
  91. }
  92. }
  93. /* Try JIS X 0208-1990. */
  94. ret = jisx0208_wctomb(conv,buf,wc,2);
  95. if (ret != RET_ILUNI) {
  96. unsigned char c1, c2;
  97. if (ret != 2) abort();
  98. if (n < 2)
  99. return RET_TOOSMALL;
  100. c1 = buf[0];
  101. c2 = buf[1];
  102. if ((c1 >= 0x21 && c1 <= 0x74) && (c2 >= 0x21 && c2 <= 0x7e)) {
  103. unsigned char t1 = (c1 - 0x21) >> 1;
  104. unsigned char t2 = (((c1 - 0x21) & 1) ? 0x5e : 0) + (c2 - 0x21);
  105. r[0] = (t1 < 0x1f ? t1+0x81 : t1+0xc1);
  106. r[1] = (t2 < 0x3f ? t2+0x40 : t2+0x41);
  107. return 2;
  108. }
  109. }
  110. /* User-defined range. See
  111. * Ken Lunde's "CJKV Information Processing", table 4-66, p. 206. */
  112. if (wc >= 0xe000 && wc < 0xe758) {
  113. unsigned char c1, c2;
  114. if (n < 2)
  115. return RET_TOOSMALL;
  116. c1 = (unsigned int) (wc - 0xe000) / 188;
  117. c2 = (unsigned int) (wc - 0xe000) % 188;
  118. r[0] = c1+0xf0;
  119. r[1] = (c2 < 0x3f ? c2+0x40 : c2+0x41);
  120. return 2;
  121. }
  122. return RET_ILUNI;
  123. }