2.9
[glibc/nacl-glibc.git] / iconvdata / iso-2022-kr.c
blob556a33d449d13ee706496f4489c40105ff5f3688
1 /* Conversion module for ISO-2022-KR.
2 Copyright (C) 1998, 1999, 2000-2002, 2007, 2008
3 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
5 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
7 The GNU C Library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either
10 version 2.1 of the License, or (at your option) any later version.
12 The GNU C Library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
17 You should have received a copy of the GNU Lesser General Public
18 License along with the GNU C Library; if not, write to the Free
19 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 02111-1307 USA. */
22 #include <dlfcn.h>
23 #include <gconv.h>
24 #include <stdint.h>
25 #include <string.h>
26 #include "ksc5601.h"
28 #include <assert.h>
30 /* This makes obvious what everybody knows: 0x1b is the Esc character. */
31 #define ESC 0x1b
33 /* The shift sequences for this charset (it does not use ESC). */
34 #define SI 0x0f
35 #define SO 0x0e
37 /* Definitions used in the body of the `gconv' function. */
38 #define CHARSET_NAME "ISO-2022-KR//"
39 #define DEFINE_INIT 1
40 #define DEFINE_FINI 1
41 #define FROM_LOOP from_iso2022kr_loop
42 #define TO_LOOP to_iso2022kr_loop
43 #define MIN_NEEDED_FROM 1
44 #define MAX_NEEDED_FROM 4
45 #define MIN_NEEDED_TO 4
46 #define MAX_NEEDED_TO 4
47 #define PREPARE_LOOP \
48 int save_set; \
49 int *setp = &data->__statep->__count; \
50 if (!FROM_DIRECTION && !data->__internal_use \
51 && data->__invocation_counter == 0) \
52 { \
53 /* Emit the designator sequence. */ \
54 if (outbuf + 4 > outend) \
55 return __GCONV_FULL_OUTPUT; \
57 *outbuf++ = ESC; \
58 *outbuf++ = '$'; \
59 *outbuf++ = ')'; \
60 *outbuf++ = 'C'; \
62 #define EXTRA_LOOP_ARGS , setp
65 /* The COUNT element of the state keeps track of the currently selected
66 character set. The possible values are: */
67 enum
69 ASCII_set = 0,
70 KSC5601_set = 8
74 /* Since this is a stateful encoding we have to provide code which resets
75 the output state to the initial state. This has to be done during the
76 flushing. */
77 #define EMIT_SHIFT_TO_INIT \
78 if (data->__statep->__count != ASCII_set) \
79 { \
80 if (FROM_DIRECTION) \
81 { \
82 /* It's easy, we don't have to emit anything, we just reset the \
83 state for the input. */ \
84 data->__statep->__count &= 7; \
85 data->__statep->__count |= ASCII_set; \
86 } \
87 else \
88 { \
89 /* We are not in the initial state. To switch back we have \
90 to emit `SI'. */ \
91 if (__builtin_expect (outbuf == outend, 0)) \
92 /* We don't have enough room in the output buffer. */ \
93 status = __GCONV_FULL_OUTPUT; \
94 else \
95 { \
96 /* Write out the shift sequence. */ \
97 *outbuf++ = SI; \
98 data->__statep->__count = ASCII_set; \
99 } \
104 /* Since we might have to reset input pointer we must be able to save
105 and retore the state. */
106 #define SAVE_RESET_STATE(Save) \
107 if (Save) \
108 save_set = *setp; \
109 else \
110 *setp = save_set
113 /* First define the conversion function from ISO-2022-KR to UCS4. */
114 #define MIN_NEEDED_INPUT MIN_NEEDED_FROM
115 #define MAX_NEEDED_INPUT MAX_NEEDED_FROM
116 #define MIN_NEEDED_OUTPUT MIN_NEEDED_TO
117 #define LOOPFCT FROM_LOOP
118 #define BODY \
120 uint32_t ch = *inptr; \
122 /* This is a 7bit character set, disallow all 8bit characters. */ \
123 if (__builtin_expect (ch > 0x7f, 0)) \
124 STANDARD_FROM_LOOP_ERR_HANDLER (1); \
126 /* Recognize escape sequences. */ \
127 if (__builtin_expect (ch, 0) == ESC) \
129 /* We don't really have to handle escape sequences since all the \
130 switching is done using the SI and SO bytes. But we have to \
131 recognize `Esc $ ) C' since this is a kind of flag for this \
132 encoding. We simply ignore it. */ \
133 if (__builtin_expect (inptr + 2 > inend, 0) \
134 || (inptr[1] == '$' \
135 && (__builtin_expect (inptr + 3 > inend, 0) \
136 || (inptr[2] == ')' \
137 && __builtin_expect (inptr + 4 > inend, 0))))) \
139 result = __GCONV_INCOMPLETE_INPUT; \
140 break; \
142 if (inptr[1] == '$' && inptr[2] == ')' && inptr[3] == 'C') \
144 /* Yeah, yeah, we know this is ISO 2022-KR. */ \
145 inptr += 4; \
146 continue; \
149 else if (__builtin_expect (ch, 0) == SO) \
151 /* Switch to use KSC. */ \
152 ++inptr; \
153 set = KSC5601_set; \
154 continue; \
156 else if (__builtin_expect (ch, 0) == SI) \
158 /* Switch to use ASCII. */ \
159 ++inptr; \
160 set = ASCII_set; \
161 continue; \
164 if (set == ASCII_set) \
166 /* Almost done, just advance the input pointer. */ \
167 ++inptr; \
169 else \
171 assert (set == KSC5601_set); \
173 /* Use the KSC 5601 table. */ \
174 ch = ksc5601_to_ucs4 (&inptr, inend - inptr, 0); \
176 if (__builtin_expect (ch == 0, 0)) \
178 result = __GCONV_INCOMPLETE_INPUT; \
179 break; \
181 else if (__builtin_expect (ch == __UNKNOWN_10646_CHAR, 0)) \
183 STANDARD_FROM_LOOP_ERR_HANDLER (1); \
187 put32 (outptr, ch); \
188 outptr += 4; \
190 #define LOOP_NEED_FLAGS
191 #define EXTRA_LOOP_DECLS , int *setp
192 #define INIT_PARAMS int set = *setp
193 #define UPDATE_PARAMS *setp = set
194 #include <iconv/loop.c>
197 /* Next, define the other direction. */
198 #define MIN_NEEDED_INPUT MIN_NEEDED_TO
199 #define MIN_NEEDED_OUTPUT MIN_NEEDED_FROM
200 #define MAX_NEEDED_OUTPUT MAX_NEEDED_FROM
201 #define LOOPFCT TO_LOOP
202 #define BODY \
204 uint32_t ch = get32 (inptr); \
206 /* First see whether we can write the character using the currently \
207 selected character set. */ \
208 if (ch < 0x80) \
210 if (set != ASCII_set) \
212 *outptr++ = SI; \
213 set = ASCII_set; \
214 if (__builtin_expect (outptr == outend, 0)) \
216 result = __GCONV_FULL_OUTPUT; \
217 break; \
221 *outptr++ = ch; \
223 else \
225 unsigned char buf[2]; \
226 /* Fake initialization to keep gcc quiet. */ \
227 asm ("" : "=m" (buf)); \
229 size_t written = ucs4_to_ksc5601 (ch, buf, 2); \
230 if (__builtin_expect (written, 0) == __UNKNOWN_10646_CHAR) \
232 UNICODE_TAG_HANDLER (ch, 4); \
234 /* Illegal character. */ \
235 STANDARD_TO_LOOP_ERR_HANDLER (4); \
237 else \
239 assert (written == 2); \
241 /* We use KSC 5601. */ \
242 if (set != KSC5601_set) \
244 *outptr++ = SO; \
245 set = KSC5601_set; \
248 if (__builtin_expect (outptr + 2 > outend, 0)) \
250 result = __GCONV_FULL_OUTPUT; \
251 break; \
254 *outptr++ = buf[0]; \
255 *outptr++ = buf[1]; \
259 /* Now that we wrote the output increment the input pointer. */ \
260 inptr += 4; \
262 #define LOOP_NEED_FLAGS
263 #define EXTRA_LOOP_DECLS , int *setp
264 #define INIT_PARAMS int set = *setp
265 #define REINIT_PARAMS set = *setp
266 #define UPDATE_PARAMS *setp = set
267 #include <iconv/loop.c>
270 /* Now define the toplevel functions. */
271 #include <iconv/skeleton.c>