1 /* Conversion from and to IBM933.
2 Copyright (C) 2000-2023 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 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.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
19 /* IBM933 is designed for the representation of Korean using a stateful
20 EBCDIC encoding scheme. It is also known as CCSID 933 or CP933. See:
21 https://www-01.ibm.com/software/globalization/ccsid/ccsid933.html */
29 /* The shift sequences for this charset (it does not use ESC). */
30 #define SI 0x0F /* Shift In, host code to turn DBCS off. */
31 #define SO 0x0E /* Shift Out, host code to turn DBCS on. */
33 /* Definitions used in the body of the `gconv' function. */
34 #define CHARSET_NAME "IBM933//"
35 #define FROM_LOOP from_ibm933
36 #define TO_LOOP to_ibm933
37 #define ONE_DIRECTION 0
38 #define FROM_LOOP_MIN_NEEDED_FROM 1
39 #define FROM_LOOP_MAX_NEEDED_FROM 2
40 #define FROM_LOOP_MIN_NEEDED_TO 4
41 #define FROM_LOOP_MAX_NEEDED_TO 4
42 #define TO_LOOP_MIN_NEEDED_FROM 4
43 #define TO_LOOP_MAX_NEEDED_FROM 4
44 #define TO_LOOP_MIN_NEEDED_TO 1
45 #define TO_LOOP_MAX_NEEDED_TO 3
46 #define PREPARE_LOOP \
48 int *curcsp = &data->__statep->__count;
49 #define EXTRA_LOOP_ARGS , curcsp
51 /* Definitions of initialization and destructor function. */
56 /* Since this is a stateful encoding we have to provide code which resets
57 the output state to the initial state. This has to be done during the
59 #define EMIT_SHIFT_TO_INIT \
60 if ((data->__statep->__count & ~7) != sb) \
63 data->__statep->__count &= 7; \
66 /* We are not in the initial state. To switch back we have \
68 if (__glibc_unlikely (outbuf >= outend)) \
69 /* We don't have enough room in the output buffer. */ \
70 status = __GCONV_FULL_OUTPUT; \
73 /* Write out the shift sequence. */ \
75 data->__statep->__count &= 7; \
81 /* Since we might have to reset input pointer we must be able to save
82 and restore the state. */
83 #define SAVE_RESET_STATE(Save) \
85 save_curcs = *curcsp; \
90 /* Current codeset type. */
97 /* First, define the conversion function from IBM-933 to UCS4. */
98 #define MIN_NEEDED_INPUT FROM_LOOP_MIN_NEEDED_FROM
99 #define MAX_NEEDED_INPUT FROM_LOOP_MAX_NEEDED_FROM
100 #define MIN_NEEDED_OUTPUT FROM_LOOP_MIN_NEEDED_TO
101 #define MAX_NEEDED_OUTPUT FROM_LOOP_MAX_NEEDED_TO
102 #define LOOPFCT FROM_LOOP
105 uint32_t ch = *inptr; \
108 if (__builtin_expect (ch, 0) == SO) \
110 /* Shift OUT, change to DBCS converter (redundant escape okay). */ \
115 else if (__builtin_expect (ch, 0) == SI) \
117 /* Shift IN, change to SBCS converter (redundant escape okay). */ \
125 /* Use the IBM933 table for single byte. */ \
126 res = __ibm933sb_to_ucs4[ch]; \
127 if (__builtin_expect (res, L'\1') == L'\0' && ch != '\0') \
129 /* This is an illegal character. */ \
130 STANDARD_FROM_LOOP_ERR_HANDLER (1); \
134 put32 (outptr, res); \
141 const struct gap *rp2 = __ibm933db_to_ucs4_idx; \
143 assert (curcs == db); \
145 /* Use the IBM933 table for double byte. */ \
146 if (__glibc_unlikely (inptr + 1 >= inend)) \
148 /* The second character is not available. Store the \
149 intermediate result. */ \
150 result = __GCONV_INCOMPLETE_INPUT; \
154 ch = (ch * 0x100) + inptr[1]; \
155 while (ch > rp2->end) \
158 if (__builtin_expect (rp2->start == 0xffff, 0) \
159 || __builtin_expect (ch < rp2->start, 0) \
160 || (res = __ibm933db_to_ucs4[ch + rp2->idx], \
161 __builtin_expect (res, L'\1') == L'\0' && ch != '\0')) \
163 /* This is an illegal character. */ \
164 STANDARD_FROM_LOOP_ERR_HANDLER (2); \
168 put32 (outptr, res); \
174 #define LOOP_NEED_FLAGS
175 #define EXTRA_LOOP_DECLS , int *curcsp
176 #define INIT_PARAMS int curcs = *curcsp & ~7
177 #define UPDATE_PARAMS *curcsp = curcs
178 #include <iconv/loop.c>
180 /* Next, define the other direction. */
181 #define MIN_NEEDED_INPUT TO_LOOP_MIN_NEEDED_FROM
182 #define MAX_NEEDED_INPUT TO_LOOP_MAX_NEEDED_FROM
183 #define MIN_NEEDED_OUTPUT TO_LOOP_MIN_NEEDED_TO
184 #define MAX_NEEDED_OUTPUT TO_LOOP_MAX_NEEDED_TO
185 #define LOOPFCT TO_LOOP
188 uint32_t ch = get32 (inptr); \
189 const struct gap *rp1 = __ucs4_to_ibm933sb_idx; \
190 const struct gap *rp2 = __ucs4_to_ibm933db_idx; \
192 if (__glibc_unlikely (ch >= 0xffff)) \
194 UNICODE_TAG_HANDLER (ch, 4); \
196 STANDARD_TO_LOOP_ERR_HANDLER (4); \
199 while (ch > rp1->end) \
202 /* Use the UCS4 table for single byte. */ \
203 unsigned char sbconv; \
204 if (__builtin_expect (ch < rp1->start, 0) \
205 || (sbconv = __ucs4_to_ibm933sb[ch + rp1->idx], \
206 __builtin_expect (sbconv, L'\1') == L'\0' && ch != '\0')) \
208 /* Use the UCS4 table for double byte. */ \
209 while (ch > rp2->end) \
213 if (__builtin_expect (ch < rp2->start, 0) \
214 || (cp = __ucs4_to_ibm933db[ch + rp2->idx], \
215 __builtin_expect (cp[0], L'\1')==L'\0' && ch != '\0')) \
217 /* This is an illegal character. */ \
218 STANDARD_TO_LOOP_ERR_HANDLER (4); \
224 if (__glibc_unlikely (outptr + 1 > outend)) \
226 result = __GCONV_FULL_OUTPUT; \
233 if (__glibc_unlikely (outptr + 2 > outend)) \
235 result = __GCONV_FULL_OUTPUT; \
246 if (__glibc_unlikely (outptr + 1 > outend)) \
248 result = __GCONV_FULL_OUTPUT; \
255 if (__glibc_unlikely (outptr + 1 > outend)) \
257 result = __GCONV_FULL_OUTPUT; \
260 *outptr++ = sbconv; \
263 /* Now that we wrote the output increment the input pointer. */ \
266 #define LOOP_NEED_FLAGS
267 #define EXTRA_LOOP_DECLS , int *curcsp
268 #define INIT_PARAMS int curcs = *curcsp & ~7
269 #define REINIT_PARAMS curcs = *curcsp & ~7
270 #define UPDATE_PARAMS *curcsp = curcs
271 #include <iconv/loop.c>
273 /* Now define the toplevel functions. */
274 #include <iconv/skeleton.c>