1 /* Conversion from and to Shift_JISX0213.
2 Copyright (C) 2002-2015 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Bruno Haible <bruno@clisp.org>, 2002.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
24 /* The structure of Shift_JISX0213 is as follows:
26 0x00..0x7F: ISO646-JP, an ASCII variant
28 0x{A1..DF}: JISX0201 Katakana.
30 0x{81..9F,E0..EF}{40..7E,80..FC}: JISX0213 plane 1.
32 0x{F0..FC}{40..7E,80..FC}: JISX0213 plane 2, with irregular row mapping.
34 Note that some JISX0213 characters are not contained in Unicode 3.2
35 and are therefore best represented as sequences of Unicode characters.
40 /* Definitions used in the body of the `gconv' function. */
41 #define CHARSET_NAME "SHIFT_JISX0213//"
42 #define FROM_LOOP from_shift_jisx0213
43 #define TO_LOOP to_shift_jisx0213
46 #define ONE_DIRECTION 0
47 #define FROM_LOOP_MIN_NEEDED_FROM 1
48 #define FROM_LOOP_MAX_NEEDED_FROM 2
49 #define FROM_LOOP_MIN_NEEDED_TO 4
50 #define FROM_LOOP_MAX_NEEDED_TO 8
51 #define TO_LOOP_MIN_NEEDED_FROM 4
52 #define TO_LOOP_MAX_NEEDED_FROM 4
53 #define TO_LOOP_MIN_NEEDED_TO 1
54 #define TO_LOOP_MAX_NEEDED_TO 2
55 #define PREPARE_LOOP \
57 int *statep = &data->__statep->__count;
58 #define EXTRA_LOOP_ARGS , statep
61 /* Since we might have to reset input pointer we must be able to save
62 and restore the state. */
63 #define SAVE_RESET_STATE(Save) \
65 saved_state = *statep; \
70 /* During Shift_JISX0213 to UCS-4 conversion, the COUNT element of the state
71 contains the last UCS-4 character, shifted by 3 bits.
72 During UCS-4 to Shift_JISX0213 conversion, the COUNT element of the state
73 contains the last two bytes to be output, shifted by 3 bits. */
75 /* Since this is a stateful encoding we have to provide code which resets
76 the output state to the initial state. This has to be done during the
78 #define EMIT_SHIFT_TO_INIT \
79 if (data->__statep->__count != 0) \
83 if (__glibc_likely (outbuf + 4 <= outend)) \
85 /* Write out the last character. */ \
86 *((uint32_t *) outbuf) = data->__statep->__count >> 3; \
87 outbuf += sizeof (uint32_t); \
88 data->__statep->__count = 0; \
91 /* We don't have enough room in the output buffer. */ \
92 status = __GCONV_FULL_OUTPUT; \
96 if (__glibc_likely (outbuf + 2 <= outend)) \
98 /* Write out the last character. */ \
99 uint32_t lasttwo = data->__statep->__count >> 3; \
100 *outbuf++ = (lasttwo >> 8) & 0xff; \
101 *outbuf++ = lasttwo & 0xff; \
102 data->__statep->__count = 0; \
105 /* We don't have enough room in the output buffer. */ \
106 status = __GCONV_FULL_OUTPUT; \
111 /* First define the conversion function from Shift_JISX0213 to UCS-4. */
112 #define MIN_NEEDED_INPUT FROM_LOOP_MIN_NEEDED_FROM
113 #define MAX_NEEDED_INPUT FROM_LOOP_MAX_NEEDED_FROM
114 #define MIN_NEEDED_OUTPUT FROM_LOOP_MIN_NEEDED_TO
115 #define MAX_NEEDED_OUTPUT FROM_LOOP_MAX_NEEDED_TO
116 #define LOOPFCT FROM_LOOP
121 /* Determine whether there is a buffered character pending. */ \
123 if (__glibc_likely (ch == 0)) \
125 /* No - so look at the next input byte. */ \
130 /* Plain ISO646-JP character. */ \
131 if (__glibc_unlikely (ch == 0x5c)) \
133 else if (__glibc_unlikely (ch == 0x7e)) \
137 else if (ch >= 0xa1 && ch <= 0xdf) \
139 /* Half-width katakana. */ \
143 else if ((ch >= 0x81 && ch <= 0x9f) || (ch >= 0xe0 && ch <= 0xfc)) \
145 /* Two byte character. */ \
148 if (__glibc_unlikely (inptr + 1 >= inend)) \
150 /* The second byte is not available. */ \
151 result = __GCONV_INCOMPLETE_INPUT; \
157 /* The second byte must be in the range 0x{40..7E,80..FC}. */ \
158 if (__glibc_unlikely (ch2 < 0x40 || ch2 == 0x7f || ch2 > 0xfc)) \
160 /* This is an illegal character. */ \
161 STANDARD_FROM_LOOP_ERR_HANDLER (1); \
164 /* Convert to row and column. */ \
173 /* Now 0 <= ch <= 0x3b, 0 <= ch2 <= 0xbb. */ \
180 /* Handling of JISX 0213 plane 2 rows. */ \
183 else if (ch >= 0x63 || ch == 0x5f) \
189 ch = jisx0213_to_ucs4 (0x121 + ch, ch2); \
193 /* This is an illegal character. */ \
194 STANDARD_FROM_LOOP_ERR_HANDLER (1); \
201 /* It's a combining character. */ \
202 uint32_t u1 = __jisx0213_to_ucs_combining[ch - 1][0]; \
203 uint32_t u2 = __jisx0213_to_ucs_combining[ch - 1][1]; \
205 put32 (outptr, u1); \
208 /* See whether we have room for two characters. */ \
209 if (outptr + 4 <= outend) \
211 put32 (outptr, u2); \
216 /* Otherwise store only the first character now, and \
217 put the second one into the queue. */ \
219 /* Tell the caller why we terminate the loop. */ \
220 result = __GCONV_FULL_OUTPUT; \
226 /* This is illegal. */ \
227 STANDARD_FROM_LOOP_ERR_HANDLER (1); \
231 put32 (outptr, ch); \
234 #define LOOP_NEED_FLAGS
235 #define EXTRA_LOOP_DECLS , int *statep
236 #define ONEBYTE_BODY \
246 if (c >= 0xa1 && c <= 0xdf) \
250 #include <iconv/loop.c>
253 /* Next, define the other direction, from UCS-4 to Shift_JISX0213. */
255 /* Composition tables for each of the relevant combining characters. */
260 } comp_table_data
[] =
262 #define COMP_TABLE_IDX_02E5 0
263 #define COMP_TABLE_LEN_02E5 1
264 { 0x8684, 0x8685 }, /* 0x12B65 = 0x12B64 U+02E5 */
265 #define COMP_TABLE_IDX_02E9 (COMP_TABLE_IDX_02E5 + COMP_TABLE_LEN_02E5)
266 #define COMP_TABLE_LEN_02E9 1
267 { 0x8680, 0x8686 }, /* 0x12B66 = 0x12B60 U+02E9 */
268 #define COMP_TABLE_IDX_0300 (COMP_TABLE_IDX_02E9 + COMP_TABLE_LEN_02E9)
269 #define COMP_TABLE_LEN_0300 5
270 { 0x857b, 0x8663 }, /* 0x12B44 = 0x1295C U+0300 */
271 { 0x8657, 0x8667 }, /* 0x12B48 = 0x12B38 U+0300 */
272 { 0x8656, 0x8669 }, /* 0x12B4A = 0x12B37 U+0300 */
273 { 0x864f, 0x866b }, /* 0x12B4C = 0x12B30 U+0300 */
274 { 0x8662, 0x866d }, /* 0x12B4E = 0x12B43 U+0300 */
275 #define COMP_TABLE_IDX_0301 (COMP_TABLE_IDX_0300 + COMP_TABLE_LEN_0300)
276 #define COMP_TABLE_LEN_0301 4
277 { 0x8657, 0x8668 }, /* 0x12B49 = 0x12B38 U+0301 */
278 { 0x8656, 0x866a }, /* 0x12B4B = 0x12B37 U+0301 */
279 { 0x864f, 0x866c }, /* 0x12B4D = 0x12B30 U+0301 */
280 { 0x8662, 0x866e }, /* 0x12B4F = 0x12B43 U+0301 */
281 #define COMP_TABLE_IDX_309A (COMP_TABLE_IDX_0301 + COMP_TABLE_LEN_0301)
282 #define COMP_TABLE_LEN_309A 14
283 { 0x82a9, 0x82f5 }, /* 0x12477 = 0x1242B U+309A */
284 { 0x82ab, 0x82f6 }, /* 0x12478 = 0x1242D U+309A */
285 { 0x82ad, 0x82f7 }, /* 0x12479 = 0x1242F U+309A */
286 { 0x82af, 0x82f8 }, /* 0x1247A = 0x12431 U+309A */
287 { 0x82b1, 0x82f9 }, /* 0x1247B = 0x12433 U+309A */
288 { 0x834a, 0x8397 }, /* 0x12577 = 0x1252B U+309A */
289 { 0x834c, 0x8398 }, /* 0x12578 = 0x1252D U+309A */
290 { 0x834e, 0x8399 }, /* 0x12579 = 0x1252F U+309A */
291 { 0x8350, 0x839a }, /* 0x1257A = 0x12531 U+309A */
292 { 0x8352, 0x839b }, /* 0x1257B = 0x12533 U+309A */
293 { 0x835a, 0x839c }, /* 0x1257C = 0x1253B U+309A */
294 { 0x8363, 0x839d }, /* 0x1257D = 0x12544 U+309A */
295 { 0x8367, 0x839e }, /* 0x1257E = 0x12548 U+309A */
296 { 0x83f3, 0x83f6 }, /* 0x12678 = 0x12675 U+309A */
299 #define MIN_NEEDED_INPUT TO_LOOP_MIN_NEEDED_FROM
300 #define MAX_NEEDED_INPUT TO_LOOP_MAX_NEEDED_FROM
301 #define MIN_NEEDED_OUTPUT TO_LOOP_MIN_NEEDED_TO
302 #define MAX_NEEDED_OUTPUT TO_LOOP_MAX_NEEDED_TO
303 #define LOOPFCT TO_LOOP
306 uint32_t ch = get32 (inptr); \
308 if ((*statep >> 3) != 0) \
310 /* Attempt to combine the last character with this one. */ \
311 uint16_t lasttwo = *statep >> 3; \
316 idx = COMP_TABLE_IDX_02E5, len = COMP_TABLE_LEN_02E5; \
317 else if (ch == 0x02e9) \
318 idx = COMP_TABLE_IDX_02E9, len = COMP_TABLE_LEN_02E9; \
319 else if (ch == 0x0300) \
320 idx = COMP_TABLE_IDX_0300, len = COMP_TABLE_LEN_0300; \
321 else if (ch == 0x0301) \
322 idx = COMP_TABLE_IDX_0301, len = COMP_TABLE_LEN_0301; \
323 else if (ch == 0x309a) \
324 idx = COMP_TABLE_IDX_309A, len = COMP_TABLE_LEN_309A; \
326 goto not_combining; \
329 if (comp_table_data[idx].base == lasttwo) \
331 while (++idx, --len > 0); \
335 /* Output the combined character. */ \
336 if (__glibc_unlikely (outptr + 1 >= outend)) \
338 result = __GCONV_FULL_OUTPUT; \
341 lasttwo = comp_table_data[idx].composed; \
342 *outptr++ = (lasttwo >> 8) & 0xff; \
343 *outptr++ = lasttwo & 0xff; \
350 /* Output the buffered character. */ \
351 if (__glibc_unlikely (outptr + 1 >= outend)) \
353 result = __GCONV_FULL_OUTPUT; \
356 *outptr++ = (lasttwo >> 8) & 0xff; \
357 *outptr++ = lasttwo & 0xff; \
363 /* Plain ISO646-JP character. */ \
365 else if (ch == 0xa5) \
367 else if (ch == 0x203e) \
369 else if (ch >= 0xff61 && ch <= 0xff9f) \
370 /* Half-width katakana. */ \
371 *outptr++ = ch - 0xfec0; \
374 unsigned int s1, s2; \
375 uint32_t jch = ucs4_to_jisx0213 (ch); \
378 UNICODE_TAG_HANDLER (ch, 4); \
380 /* Illegal character. */ \
381 STANDARD_TO_LOOP_ERR_HANDLER (4); \
384 /* Convert it to shifted representation. */ \
391 /* Handling of JISX 0213 plane 2 rows. */ \
392 if (s1 >= 0xcd) /* rows 0x26E..0x27E */ \
394 else if (s1 >= 0x8b || s1 == 0x87) /* rows 0x228, 0x22C..0x22F */ \
396 else /* rows 0x221, 0x223..0x225 */ \
398 /* Now 0x5e <= s1 <= 0x77. */ \
414 /* A possible match in comp_table_data. We have to buffer it. */\
416 /* We know it's a JISX 0213 plane 1 character. */ \
417 assert ((jch & 0x8000) == 0); \
419 *statep = ((s1 << 8) | s2) << 3; \
424 /* Output the shifted representation. */ \
425 if (__glibc_unlikely (outptr + 1 >= outend)) \
427 result = __GCONV_FULL_OUTPUT; \
436 #define LOOP_NEED_FLAGS
437 #define EXTRA_LOOP_DECLS , int *statep
438 #include <iconv/loop.c>
441 /* Now define the toplevel functions. */
442 #include <iconv/skeleton.c>