1 /* Conversion from and to IBM937.
2 Copyright (C) 2000-2016 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Masahide Washizawa <washi@yamato.ibm.co.jp>, 2000.
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/>. */
20 /* IBM937 is designed for the representation of Traditional Chinese
21 using a stateful EBCDIC encoding scheme. It is also known as
22 CCSID 937 or CP937. See:
23 https://www-01.ibm.com/software/globalization/ccsid/ccsid937.html */
31 /* The shift sequences for this charset (it does not use ESC). */
32 #define SI 0x0F /* Shift In, host code to turn DBCS off. */
33 #define SO 0x0E /* Shift Out, host code to turn DBCS on. */
35 /* Definitions used in the body of the `gconv' function. */
36 #define CHARSET_NAME "IBM937//"
37 #define FROM_LOOP from_ibm937
38 #define TO_LOOP to_ibm937
39 #define ONE_DIRECTION 0
40 #define FROM_LOOP_MIN_NEEDED_FROM 1
41 #define FROM_LOOP_MAX_NEEDED_FROM 2
42 #define FROM_LOOP_MIN_NEEDED_TO 4
43 #define FROM_LOOP_MAX_NEEDED_TO 4
44 #define TO_LOOP_MIN_NEEDED_FROM 4
45 #define TO_LOOP_MAX_NEEDED_FROM 4
46 #define TO_LOOP_MIN_NEEDED_TO 1
47 #define TO_LOOP_MAX_NEEDED_TO 3
48 #define PREPARE_LOOP \
50 int *curcsp = &data->__statep->__count;
51 #define EXTRA_LOOP_ARGS , curcsp
53 /* Definitions of initialization and destructor function. */
58 /* Since this is a stateful encoding we have to provide code which resets
59 the output state to the initial state. This has to be done during the
61 #define EMIT_SHIFT_TO_INIT \
62 if ((data->__statep->__count & ~7) != sb) \
65 data->__statep->__count &= 7; \
68 /* We are not in the initial state. To switch back we have \
70 if (__glibc_unlikely (outbuf >= outend)) \
71 /* We don't have enough room in the output buffer. */ \
72 status = __GCONV_FULL_OUTPUT; \
75 /* Write out the shift sequence. */ \
77 data->__statep->__count &= 7; \
83 /* Since we might have to reset input pointer we must be able to save
84 and retore the state. */
85 #define SAVE_RESET_STATE(Save) \
87 save_curcs = *curcsp; \
92 /* Current codeset type. */
99 /* First, define the conversion function from IBM-937 to UCS4. */
100 #define MIN_NEEDED_INPUT FROM_LOOP_MIN_NEEDED_FROM
101 #define MAX_NEEDED_INPUT FROM_LOOP_MAX_NEEDED_FROM
102 #define MIN_NEEDED_OUTPUT FROM_LOOP_MIN_NEEDED_TO
103 #define MAX_NEEDED_OUTPUT FROM_LOOP_MAX_NEEDED_TO
104 #define LOOPFCT FROM_LOOP
107 uint32_t ch = *inptr; \
110 if (__builtin_expect (ch, 0) == SO) \
112 /* Shift OUT, change to DBCS converter. */ \
115 result = __GCONV_ILLEGAL_INPUT; \
122 else if (__builtin_expect (ch, 0) == SI) \
124 /* Shift IN, change to SBCS converter. */ \
127 result = __GCONV_ILLEGAL_INPUT; \
137 /* Use the IBM937 table for single byte. */ \
138 res = __ibm937sb_to_ucs4[ch]; \
139 if (__builtin_expect (res, L'\1') == L'\0' && ch != '\0') \
141 /* This is an illegal character. */ \
142 STANDARD_FROM_LOOP_ERR_HANDLER (1); \
146 put32 (outptr, res); \
153 const struct gap *rp2 = __ibm937db_to_ucs4_idx; \
155 assert (curcs == db); \
157 /* Use the IBM937 table for double byte. */ \
158 if (__glibc_unlikely (inptr + 1 >= inend)) \
160 /* The second character is not available. \
161 Store the intermediate result. */ \
162 result = __GCONV_INCOMPLETE_INPUT; \
166 ch = (ch * 0x100) + inptr[1]; \
167 while (ch > rp2->end) \
170 if (__builtin_expect (rp2->start == 0xffff, 0) \
171 || __builtin_expect (ch < rp2->start, 0) \
172 || (res = __ibm937db_to_ucs4[ch + rp2->idx], \
173 __builtin_expect (res, L'\1') == L'\0' && ch != '\0')) \
175 /* This is an illegal character. */ \
176 STANDARD_FROM_LOOP_ERR_HANDLER (2); \
180 put32 (outptr, res); \
186 #define LOOP_NEED_FLAGS
187 #define EXTRA_LOOP_DECLS , int *curcsp
188 #define INIT_PARAMS int curcs = *curcsp & ~7
189 #define UPDATE_PARAMS *curcsp = curcs
190 #include <iconv/loop.c>
192 /* Next, define the other direction. */
193 #define MIN_NEEDED_INPUT TO_LOOP_MIN_NEEDED_FROM
194 #define MAX_NEEDED_INPUT TO_LOOP_MAX_NEEDED_FROM
195 #define MIN_NEEDED_OUTPUT TO_LOOP_MIN_NEEDED_TO
196 #define MAX_NEEDED_OUTPUT TO_LOOP_MAX_NEEDED_TO
197 #define LOOPFCT TO_LOOP
200 uint32_t ch = get32 (inptr); \
201 const struct gap *rp1 = __ucs4_to_ibm937sb_idx; \
202 const struct gap *rp2 = __ucs4_to_ibm937db_idx; \
205 if (__glibc_unlikely (ch >= 0xffff)) \
207 UNICODE_TAG_HANDLER (ch, 4); \
209 STANDARD_TO_LOOP_ERR_HANDLER (4); \
212 while (ch > rp1->end) \
215 /* Use the UCS4 table for single byte. */ \
216 if (__builtin_expect (ch < rp1->start, 0) \
217 || (cp = __ucs4_to_ibm937sb[ch + rp1->idx], \
218 __builtin_expect (cp[0], L'\1') == L'\0' && ch != '\0')) \
220 /* Use the UCS4 table for double byte. */ \
221 while (ch > rp2->end) \
224 if (__builtin_expect (ch < rp2->start, 0) \
225 || (cp = __ucs4_to_ibm937db[ch + rp2->idx], \
226 __builtin_expect (cp[0], L'\1')==L'\0' && ch != '\0')) \
228 /* This is an illegal character. */ \
229 STANDARD_TO_LOOP_ERR_HANDLER (4); \
235 if (__glibc_unlikely (outptr + 1 > outend)) \
237 result = __GCONV_FULL_OUTPUT; \
244 if (__glibc_unlikely (outptr + 2 > outend)) \
246 result = __GCONV_FULL_OUTPUT; \
257 if (__glibc_unlikely (outptr + 1 > outend)) \
259 result = __GCONV_FULL_OUTPUT; \
266 if (__glibc_unlikely (outptr + 1 > outend)) \
268 result = __GCONV_FULL_OUTPUT; \
274 /* Now that we wrote the output increment the input pointer. */ \
277 #define LOOP_NEED_FLAGS
278 #define EXTRA_LOOP_DECLS , int *curcsp
279 #define INIT_PARAMS int curcs = *curcsp & ~7
280 #define REINIT_PARAMS curcs = *curcsp & ~7
281 #define UPDATE_PARAMS *curcsp = curcs
282 #include <iconv/loop.c>
284 /* Now define the toplevel functions. */
285 #include <iconv/skeleton.c>