johab.h 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. /*
  2. * Copyright (C) 1999-2001, 2007, 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. * JOHAB
  21. */
  22. /*
  23. Conversion between JOHAB codes (s1,s2) and KSX1001 codes (c1,c2):
  24. Example. (s1,s2) = 0xD931, (c1,c2) = 0x2121.
  25. (s1,s2) = 0xDEF1, (c1,c2) = 0x2C71.
  26. (s1,s2) = 0xE031, (c1,c2) = 0x4A21.
  27. (s1,s2) = 0xF9FE, (c1,c2) = 0x7D7E.
  28. 0xD9 <= s1 <= 0xDE || 0xE0 <= s1 <= 0xF9,
  29. 0x31 <= s2 <= 0x7E || 0x91 <= s2 <= 0xFE,
  30. 0x21 <= c1 <= 0x2C || 0x4A <= c1 <= 0x7D,
  31. 0x21 <= c2 <= 0x7E.
  32. Invariant:
  33. 94*(s1 < 0xE0 ? 2*s1-0x1B2 : 2*s1-0x197) + (s2 < 0x91 ? s2-0x31 : s2-0x43)
  34. = 94*(c1-0x21)+(c2-0x21)
  35. Conversion (s1,s2) -> (c1,c2):
  36. t1 := (s1 < 0xE0 ? 2*s1-0x1B2 : 2*s1-0x197)
  37. t2 := (s2 < 0x91 ? s2-0x31 : s2-0x43)
  38. c1 := t1 + (t2 < 0x5E ? 0 : 1) + 0x21
  39. c2 := (t2 < 0x5E ? t2 : t2-0x5E) + 0x21
  40. Conversion (c1,c2) -> (s1,s2):
  41. t := (c1 < 0x4A ? (c1-0x21+0x1B2) : (c1-0x21+0x197))
  42. s1 := t >> 1
  43. t2 := (t & 1) * 0x5E + (c2 - 0x21)
  44. s2 := (t2 < 0x4E ? t2+0x31 : t2+0x43)
  45. */
  46. static int
  47. johab_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)
  48. {
  49. unsigned char c = *s;
  50. if (c < 0x80) {
  51. if (c == 0x5c)
  52. *pwc = (ucs4_t) 0x20a9;
  53. else
  54. *pwc = (ucs4_t) c;
  55. return 1;
  56. } else if (c < 0xd8) {
  57. return johab_hangul_mbtowc(conv,pwc,s,n);
  58. } else {
  59. unsigned char s1, s2;
  60. s1 = c;
  61. if ((s1 >= 0xd9 && s1 <= 0xde) || (s1 >= 0xe0 && s1 <= 0xf9)) {
  62. if (n < 2)
  63. return RET_TOOFEW(0);
  64. s2 = s[1];
  65. if ((s2 >= 0x31 && s2 <= 0x7e) || (s2 >= 0x91 && s2 <= 0xfe)) {
  66. /* In KSC 5601, now KS X 1001, the region s1 = 0xDA, 0xA1 <= s2 <= 0xD3
  67. contains the 51 Jamo (Hangul letters). But in the Johab encoding,
  68. they have been moved to the Hangul section, see
  69. johab_hangul_page31. */
  70. if (!(s1 == 0xda && (s2 >= 0xa1 && s2 <= 0xd3))) {
  71. unsigned char t1 = (s1 < 0xe0 ? 2*(s1-0xd9) : 2*s1-0x197);
  72. unsigned char t2 = (s2 < 0x91 ? s2-0x31 : s2-0x43);
  73. unsigned char buf[2];
  74. buf[0] = t1 + (t2 < 0x5e ? 0 : 1) + 0x21;
  75. buf[1] = (t2 < 0x5e ? t2 : t2-0x5e) + 0x21;
  76. return ksc5601_mbtowc(conv,pwc,buf,2);
  77. }
  78. }
  79. }
  80. return RET_ILSEQ;
  81. }
  82. }
  83. static int
  84. johab_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)
  85. {
  86. unsigned char buf[2];
  87. int ret;
  88. /* Try ASCII variation. */
  89. if (wc < 0x0080 && wc != 0x005c) {
  90. *r = wc;
  91. return 1;
  92. }
  93. if (wc == 0x20a9) {
  94. *r = 0x5c;
  95. return 1;
  96. }
  97. /* Try JOHAB Hangul table before KSC5601 table, because the KSC5601 table
  98. contains some (2350 out of 11172) Hangul syllables (rows 0x30XX..0x48XX),
  99. and we want the search to return the JOHAB Hangul table entry. */
  100. /* Try JOHAB Hangul. */
  101. ret = johab_hangul_wctomb(conv,buf,wc,2);
  102. if (ret != RET_ILUNI) {
  103. if (ret != 2) abort();
  104. if (n < 2)
  105. return RET_TOOSMALL;
  106. r[0] = buf[0];
  107. r[1] = buf[1];
  108. return 2;
  109. }
  110. /* Try KSC5601, now KS X 1001. */
  111. ret = ksc5601_wctomb(conv,buf,wc,2);
  112. if (ret != RET_ILUNI) {
  113. unsigned char c1, c2;
  114. if (ret != 2) abort();
  115. if (n < 2)
  116. return RET_TOOSMALL;
  117. c1 = buf[0];
  118. c2 = buf[1];
  119. if (((c1 >= 0x21 && c1 <= 0x2c) || (c1 >= 0x4a && c1 <= 0x7d))
  120. && (c2 >= 0x21 && c2 <= 0x7e)) {
  121. unsigned int t = (c1 < 0x4A ? (c1-0x21+0x1B2) : (c1-0x21+0x197));
  122. unsigned char t2 = ((t & 1) ? 0x5e : 0) + (c2 - 0x21);
  123. r[0] = t >> 1;
  124. r[1] = (t2 < 0x4e ? t2+0x31 : t2+0x43);
  125. return 2;
  126. }
  127. }
  128. return RET_ILUNI;
  129. }