1 /* Conversion module for ISO-2022-KR.
2 Copyright (C) 1998, 1999, 2000-2002 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
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, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
29 /* This makes obvious what everybody knows: 0x1b is the Esc character. */
32 /* The shift sequences for this charset (it does not use ESC). */
36 /* Definitions used in the body of the `gconv' function. */
37 #define CHARSET_NAME "ISO-2022-KR//"
40 #define FROM_LOOP from_iso2022kr_loop
41 #define TO_LOOP to_iso2022kr_loop
42 #define MIN_NEEDED_FROM 1
43 #define MAX_NEEDED_FROM 4
44 #define MIN_NEEDED_TO 4
45 #define MAX_NEEDED_TO 4
46 #define PREPARE_LOOP \
48 int *setp = &data->__statep->__count; \
49 if (!FROM_DIRECTION && !data->__internal_use \
50 && data->__invocation_counter == 0) \
52 /* Emit the designator sequence. */ \
53 if (outbuf + 4 > outend) \
54 return __GCONV_FULL_OUTPUT; \
61 #define EXTRA_LOOP_ARGS , setp
64 /* The COUNT element of the state keeps track of the currently selected
65 character set. The possible values are: */
73 /* Since this is a stateful encoding we have to provide code which resets
74 the output state to the initial state. This has to be done during the
76 #define EMIT_SHIFT_TO_INIT \
77 if (data->__statep->__count != ASCII_set) \
81 /* It's easy, we don't have to emit anything, we just reset the \
82 state for the input. */ \
83 data->__statep->__count &= 7; \
84 data->__statep->__count |= ASCII_set; \
88 /* We are not in the initial state. To switch back we have \
90 if (__builtin_expect (outbuf == outend, 0)) \
91 /* We don't have enough room in the output buffer. */ \
92 status = __GCONV_FULL_OUTPUT; \
95 /* Write out the shift sequence. */ \
97 data->__statep->__count = ASCII_set; \
103 /* Since we might have to reset input pointer we must be able to save
104 and retore the state. */
105 #define SAVE_RESET_STATE(Save) \
112 /* First define the conversion function from ISO-2022-KR to UCS4. */
113 #define MIN_NEEDED_INPUT MIN_NEEDED_FROM
114 #define MAX_NEEDED_INPUT MAX_NEEDED_FROM
115 #define MIN_NEEDED_OUTPUT MIN_NEEDED_TO
116 #define LOOPFCT FROM_LOOP
119 uint32_t ch = *inptr; \
121 /* This is a 7bit character set, disallow all 8bit characters. */ \
122 if (__builtin_expect (ch > 0x7f, 0)) \
123 STANDARD_FROM_LOOP_ERR_HANDLER (1); \
125 /* Recognize escape sequences. */ \
126 if (__builtin_expect (ch, 0) == ESC) \
128 /* We don't really have to handle escape sequences since all the \
129 switching is done using the SI and SO bytes. But we have to \
130 recognize `Esc $ ) C' since this is a kind of flag for this \
131 encoding. We simply ignore it. */ \
132 if (__builtin_expect (inptr + 2 > inend, 0) \
133 || (inptr[1] == '$' \
134 && (__builtin_expect (inptr + 3 > inend, 0) \
135 || (inptr[2] == ')' \
136 && __builtin_expect (inptr + 4 > inend, 0))))) \
138 result = __GCONV_INCOMPLETE_INPUT; \
141 if (inptr[1] == '$' && inptr[2] == ')' && inptr[3] == 'C') \
143 /* Yeah, yeah, we know this is ISO 2022-KR. */ \
148 else if (__builtin_expect (ch, 0) == SO) \
150 /* Switch to use KSC. */ \
155 else if (__builtin_expect (ch, 0) == SI) \
157 /* Switch to use ASCII. */ \
163 if (set == ASCII_set) \
165 /* Almost done, just advance the input pointer. */ \
170 assert (set == KSC5601_set); \
172 /* Use the KSC 5601 table. */ \
173 ch = ksc5601_to_ucs4 (&inptr, inend - inptr, 0); \
175 if (__builtin_expect (ch == 0, 0)) \
177 result = __GCONV_INCOMPLETE_INPUT; \
180 else if (__builtin_expect (ch == __UNKNOWN_10646_CHAR, 0)) \
182 STANDARD_FROM_LOOP_ERR_HANDLER (1); \
186 put32 (outptr, ch); \
189 #define LOOP_NEED_FLAGS
190 #define EXTRA_LOOP_DECLS , int *setp
191 #define INIT_PARAMS int set = *setp
192 #define UPDATE_PARAMS *setp = set
193 #include <iconv/loop.c>
196 /* Next, define the other direction. */
197 #define MIN_NEEDED_INPUT MIN_NEEDED_TO
198 #define MIN_NEEDED_OUTPUT MIN_NEEDED_FROM
199 #define MAX_NEEDED_OUTPUT MAX_NEEDED_FROM
200 #define LOOPFCT TO_LOOP
205 ch = get32 (inptr); \
207 /* First see whether we can write the character using the currently \
208 selected character set. */ \
211 if (set != ASCII_set) \
215 if (__builtin_expect (outptr == outend, 0)) \
217 result = __GCONV_FULL_OUTPUT; \
229 written = ucs4_to_ksc5601 (ch, buf, 2); \
231 if (__builtin_expect (written, 0) == __UNKNOWN_10646_CHAR) \
233 UNICODE_TAG_HANDLER (ch, 4); \
235 /* Illegal character. */ \
236 STANDARD_TO_LOOP_ERR_HANDLER (4); \
240 assert (written == 2); \
242 /* We use KSC 5601. */ \
243 if (set != KSC5601_set) \
249 if (__builtin_expect (outptr + 2 > outend, 0)) \
251 result = __GCONV_FULL_OUTPUT; \
255 *outptr++ = buf[0]; \
256 *outptr++ = buf[1]; \
260 /* Now that we wrote the output increment the input pointer. */ \
263 #define LOOP_NEED_FLAGS
264 #define EXTRA_LOOP_DECLS , int *setp
265 #define INIT_PARAMS int set = *setp
266 #define UPDATE_PARAMS *setp = set
267 #include <iconv/loop.c>
270 /* Now define the toplevel functions. */
271 #include <iconv/skeleton.c>