Update.
[glibc.git] / iconvdata / iso-2022-kr.c
blob8c1d88b12c890079eff7343184d584a8fc65a5e6
1 /* Conversion module for ISO-2022-KR.
2 Copyright (C) 1998, 1999 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 Library General Public License as
8 published by the Free Software Foundation; either version 2 of the
9 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 Library General Public License for more details.
16 You should have received a copy of the GNU Library General Public
17 License along with the GNU C Library; see the file COPYING.LIB. If not,
18 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 #include <gconv.h>
22 #include <stdint.h>
23 #include <string.h>
24 #include "ksc5601.h"
26 #include <assert.h>
28 /* This makes obvious what everybody knows: 0x1b is the Esc character. */
29 #define ESC 0x1b
31 /* The shift sequences for this charset (it does not use ESC). */
32 #define SI 0x0f
33 #define SO 0x0e
35 /* Definitions used in the body of the `gconv' function. */
36 #define CHARSET_NAME "ISO-2022-KR//"
37 #define DEFINE_INIT 1
38 #define DEFINE_FINI 1
39 #define FROM_LOOP from_iso2022kr_loop
40 #define TO_LOOP to_iso2022kr_loop
41 #define MIN_NEEDED_FROM 1
42 #define MAX_NEEDED_FROM 3
43 #define MIN_NEEDED_TO 4
44 #define MAX_NEEDED_TO 4
45 #define PREPARE_LOOP \
46 int save_set; \
47 int *setp = &data->__statep->count; \
48 if (!FROM_DIRECTION && !data->__internal_use \
49 && data->__invocation_counter == 0) \
50 { \
51 /* Emit the designator sequence. */ \
52 if (outbuf + 4 > outend) \
53 return __GCONV_FULL_OUTPUT; \
55 *outbuf++ = ESC; \
56 *outbuf++ = '$'; \
57 *outbuf++ = ')'; \
58 *outbuf++ = 'C'; \
60 #define EXTRA_LOOP_ARGS , setp
63 /* The COUNT element of the state keeps track of the currently selected
64 character set. The possible values are: */
65 enum
67 ASCII_set = 0,
68 KSC5601_set
72 /* Since this is a stateful encoding we have to provide code which resets
73 the output state to the initial state. This has to be done during the
74 flushing. */
75 #define EMIT_SHIFT_TO_INIT \
76 if (data->__statep->count != ASCII_set) \
77 { \
78 if (FROM_DIRECTION) \
79 /* It's easy, we don't have to emit anything, we just reset the \
80 state for the input. */ \
81 data->__statep->count = ASCII_set; \
82 else \
83 { \
84 unsigned char *outbuf = data->__outbuf; \
86 /* We are not in the initial state. To switch back we have \
87 to emit `SI'. */ \
88 if (outbuf == data->__outbufend) \
89 /* We don't have enough room in the output buffer. */ \
90 status = __GCONV_FULL_OUTPUT; \
91 else \
92 { \
93 /* Write out the shift sequence. */ \
94 *outbuf++ = SI; \
95 if (data->__is_last) \
96 *written += 1; \
97 data->__outbuf = outbuf; \
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 (ch > 0x7f) \
125 result = __GCONV_ILLEGAL_INPUT; \
126 break; \
129 /* Recognize escape sequences. */ \
130 if (ch == ESC) \
132 /* We don't really have to handle escape sequences since all the \
133 switching is done using the SI and SO bytes. But we have to \
134 recognize `Esc $ ) C' since this is a kind of flag for this \
135 encoding. We simply ignore it. */ \
136 if (inptr + 1 > inend \
137 || (inptr[1] == '$' \
138 && (inptr + 2 > inend \
139 || (inptr[2] == ')' && inptr + 3 > inend)))) \
142 result = __GCONV_EMPTY_INPUT; \
143 break; \
145 if (inptr[1] == '$' && inptr[2] == ')' && inptr[3] == 'C') \
147 /* Yeah, yeah, we know this is ISO 2022-KR. */ \
148 inptr += 4; \
149 continue; \
152 else if (ch == SO) \
154 /* Switch to use KSC. */ \
155 ++inptr; \
156 set = KSC5601_set; \
157 continue; \
159 else if (ch == SI) \
161 /* Switch to use ASCII. */ \
162 ++inptr; \
163 set = ASCII_set; \
164 continue; \
167 if (set == ASCII_set) \
169 if (ch >= 0x80) \
171 result = __GCONV_ILLEGAL_INPUT; \
172 break; \
174 /* Almost done, just advance the input pointer. */ \
175 ++inptr; \
177 else \
179 assert (set == KSC5601_set); \
181 /* Use the KSC 5601 table. */ \
182 ch = ksc5601_to_ucs4 (&inptr, \
183 NEED_LENGTH_TEST ? inend - inptr : 2, 0); \
185 if (NEED_LENGTH_TEST && ch == 0) \
187 result = __GCONV_EMPTY_INPUT; \
188 break; \
190 else if (ch == __UNKNOWN_10646_CHAR) \
192 result = __GCONV_ILLEGAL_INPUT; \
193 break; \
197 *((uint32_t *) outptr)++ = ch; \
199 #define EXTRA_LOOP_DECLS , int *setp
200 #define INIT_PARAMS int set = *setp
201 #define UPDATE_PARAMS *setp = set
202 #include <iconv/loop.c>
205 /* Next, define the other direction. */
206 #define MIN_NEEDED_INPUT MIN_NEEDED_TO
207 #define MIN_NEEDED_OUTPUT MIN_NEEDED_FROM
208 #define MAX_NEEDED_OUTPUT MAX_NEEDED_FROM
209 #define LOOPFCT TO_LOOP
210 #define BODY \
212 uint32_t ch; \
213 size_t written = 0; \
215 ch = *((uint32_t *) inptr); \
217 /* First see whether we can write the character using the currently \
218 selected character set. */ \
219 if (ch < 0x80) \
221 if (set != ASCII_set) \
223 *outptr++ = SI; \
224 set = ASCII_set; \
225 if (NEED_LENGTH_TEST && outptr == outend) \
227 result = __GCONV_FULL_OUTPUT; \
228 break; \
232 *outptr++ = ch; \
233 written = 1; \
235 else \
237 char buf[2]; \
239 written = ucs4_to_ksc5601 (ch, buf, 2); \
241 if (written == __UNKNOWN_10646_CHAR) \
243 /* Illegal character. */ \
244 result = __GCONV_ILLEGAL_INPUT; \
245 break; \
247 assert (written == 2); \
249 /* We use KSC 5601. */ \
250 if (set != KSC5601_set) \
252 *outptr++ = SO; \
253 set = KSC5601_set; \
256 if (NEED_LENGTH_TEST && outptr + 2 > outend) \
258 result = __GCONV_FULL_OUTPUT; \
259 break; \
262 *outptr++ = buf[0]; \
263 *outptr++ = buf[1]; \
266 /* Now that we wrote the output increment the input pointer. */ \
267 inptr += 4; \
269 #define EXTRA_LOOP_DECLS , int *setp
270 #define INIT_PARAMS int set = *setp
271 #define UPDATE_PARAMS *setp = set
272 #include <iconv/loop.c>
275 /* Now define the toplevel functions. */
276 #include <iconv/skeleton.c>