1 /* Conversion module for ISO-2022-CN.
2 Copyright (C) 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>, 1999.
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
26 #include "cns11643l1.h"
27 #include "cns11643l2.h"
31 /* This makes obvious what everybody knows: 0x1b is the Esc character. */
34 /* We have single-byte shift-in and shift-out sequences, and the single
35 shift sequence SS2 which replaces the SS2 designation for the next
42 /* Definitions used in the body of the `gconv' function. */
43 #define CHARSET_NAME "ISO-2022-CN//"
46 #define FROM_LOOP from_iso2022cn_loop
47 #define TO_LOOP to_iso2022cn_loop
48 #define FROM_LOOP_MIN_NEEDED_FROM 1
49 #define FROM_LOOP_MAX_NEEDED_FROM 4
50 #define FROM_LOOP_MIN_NEEDED_TO 4
51 #define FROM_LOOP_MAX_NEEDED_TO 4
52 #define TO_LOOP_MIN_NEEDED_FROM 4
53 #define TO_LOOP_MAX_NEEDED_FROM 4
54 #define TO_LOOP_MIN_NEEDED_TO 1
55 #define TO_LOOP_MAX_NEEDED_TO 6
56 #define PREPARE_LOOP \
58 int *setp = &data->__statep->__count;
59 #define EXTRA_LOOP_ARGS , setp
62 /* The COUNT element of the state keeps track of the currently selected
63 character set. The possible values are: */
70 CURRENT_SEL_MASK
= 24,
74 CURRENT_ANN_MASK
= 224
78 /* Since this is a stateful encoding we have to provide code which resets
79 the output state to the initial state. This has to be done during the
81 #define EMIT_SHIFT_TO_INIT \
82 if (data->__statep->__count != ASCII_set) \
85 /* It's easy, we don't have to emit anything, we just reset the \
86 state for the input. */ \
87 data->__statep->__count = ASCII_set; \
90 /* We are not in the initial state. To switch back we have \
92 if (__builtin_expect (outbuf == outend, 0)) \
93 /* We don't have enough room in the output buffer. */ \
94 status = __GCONV_FULL_OUTPUT; \
97 /* Write out the shift sequence. */ \
99 data->__statep->__count = ASCII_set; \
105 /* Since we might have to reset input pointer we must be able to save
106 and retore the state. */
107 #define SAVE_RESET_STATE(Save) \
114 /* First define the conversion function from ISO-2022-CN to UCS4. */
115 #define MIN_NEEDED_INPUT FROM_LOOP_MIN_NEEDED_FROM
116 #define MAX_NEEDED_INPUT FROM_LOOP_MAX_NEEDED_FROM
117 #define MIN_NEEDED_OUTPUT FROM_LOOP_MIN_NEEDED_TO
118 #define MAX_NEEDED_OUTPUT FROM_LOOP_MAX_NEEDED_TO
119 #define LOOPFCT FROM_LOOP
122 uint32_t ch = *inptr; \
124 /* This is a 7bit character set, disallow all 8bit characters. */ \
125 if (__builtin_expect (ch >= 0x7f, 0)) \
126 STANDARD_FROM_LOOP_ERR_HANDLER (1); \
128 /* Recognize escape sequences. */ \
129 if (__builtin_expect (ch, 0) == ESC) \
131 /* There are two kinds of escape sequences we have to handle: \
132 - those announcing the use of GB and CNS characters on the \
133 line; we can simply ignore them \
134 - the initial byte of the SS2 sequence. \
136 if (__builtin_expect (inptr + 2 > inend, 0) \
137 || (inptr[1] == '$' \
138 && (__builtin_expect (inptr + 3 > inend, 0) \
139 || (inptr[2] == ')' \
140 && __builtin_expect (inptr + 4 > inend, 0)) \
141 || (inptr[2] == '*' \
142 && __builtin_expect (inptr + 4 > inend, 0)))) \
143 || (inptr[1] == SS2_1 \
144 && __builtin_expect (inptr + 4 > inend, 0))) \
146 result = __GCONV_INCOMPLETE_INPUT; \
149 if (inptr[1] == '$' \
150 && ((inptr[2] == ')' && (inptr[3] == 'A' || inptr[3] == 'G')) \
151 || (inptr[2] == '*' && inptr[3] == 'H'))) \
153 /* OK, we accept those character sets. */ \
154 if (inptr[3] == 'A') \
156 else if (inptr[3] == 'G') \
157 ann = CNS11643_1_ann; \
162 else if (__builtin_expect (ch, 0) == SO) \
164 /* Switch to use GB2312 or CNS 11643 plane 1, depending on which \
165 S0 designation came last. The only problem is what to do with \
166 faulty input files where no designator came. \
167 XXX For now I'll default to use GB2312. If this is not the \
168 best behaviour (e.g., we should flag an error) let me know. */ \
170 set = ann == CNS11643_1_ann ? CNS11643_1_set : GB2312_set; \
173 else if (__builtin_expect (ch, 0) == SI) \
175 /* Switch to use ASCII. */ \
181 if (__builtin_expect (ch, 0) == ESC && inptr[1] == SS2_1) \
183 /* This is a character from CNS 11643 plane 2. \
184 XXX We could test here whether the use of this character \
185 set was announced. */ \
187 ch = cns11643l2_to_ucs4 (&inptr, 2, 0); \
188 if (__builtin_expect (ch, 0) == __UNKNOWN_10646_CHAR) \
191 STANDARD_FROM_LOOP_ERR_HANDLER (2); \
194 else if (set == ASCII_set) \
196 /* Almost done, just advance the input pointer. */ \
201 /* That's pretty easy, we have a dedicated functions for this. */ \
202 if (set == GB2312_set) \
203 ch = gb2312_to_ucs4 (&inptr, inend - inptr, 0); \
206 assert (set == CNS11643_1_set); \
207 ch = cns11643l1_to_ucs4 (&inptr, inend - inptr, 0); \
210 if (__builtin_expect (ch, 1) == 0) \
212 result = __GCONV_INCOMPLETE_INPUT; \
215 else if (__builtin_expect (ch, 1) == __UNKNOWN_10646_CHAR) \
217 STANDARD_FROM_LOOP_ERR_HANDLER (1); \
221 put32 (outptr, ch); \
224 #define LOOP_NEED_FLAGS
225 #define EXTRA_LOOP_DECLS , int *setp
226 #define INIT_PARAMS int set = *setp & CURRENT_SEL_MASK; \
227 int ann = *setp & CURRENT_ANN_MASK
228 #define UPDATE_PARAMS *setp = set | ann
229 #include <iconv/loop.c>
232 /* Next, define the other direction. */
233 #define MIN_NEEDED_INPUT TO_LOOP_MIN_NEEDED_FROM
234 #define MAX_NEEDED_INPUT TO_LOOP_MAX_NEEDED_FROM
235 #define MIN_NEEDED_OUTPUT TO_LOOP_MIN_NEEDED_TO
236 #define MAX_NEEDED_OUTPUT TO_LOOP_MAX_NEEDED_TO
237 #define LOOPFCT TO_LOOP
240 uint32_t ch = get32 (inptr); \
242 /* First see whether we can write the character using the currently \
243 selected character set. */ \
246 if (set != ASCII_set) \
250 if (__builtin_expect (outptr == outend, 0)) \
252 result = __GCONV_FULL_OUTPUT; \
259 /* At the end of the line we have to clear the `ann' flags since \
260 every line must contain this information again. */ \
268 size_t written = 0; \
270 if (set == GB2312_set || (ann & CNS11643_1_ann) == 0) \
272 written = ucs4_to_gb2312 (ch, buf, 2); \
277 written = ucs4_to_cns11643l1 (ch, buf, 2); \
278 used = CNS11643_1_set; \
281 if (written == __UNKNOWN_10646_CHAR) \
283 /* Cannot convert it using the currently selected SO set. \
284 Next try the SS2 set. */ \
285 written = ucs4_to_cns11643l2 (ch, buf, 2); \
286 if (written != __UNKNOWN_10646_CHAR) \
287 /* Yep, that worked. */ \
288 used = CNS11643_2_set; \
291 /* Well, see whether we have to change the SO set. */ \
292 if (used == GB2312_set) \
293 written = ucs4_to_cns11643l1 (ch, buf, 2); \
295 written = ucs4_to_gb2312 (ch, buf, 2); \
297 if (__builtin_expect (written, 0) != __UNKNOWN_10646_CHAR) \
298 /* Oh well, then switch SO. */ \
299 used = GB2312_set + CNS11643_1_set - used; \
302 UNICODE_TAG_HANDLER (ch, 4); \
304 /* Even this does not work. Error. */ \
305 STANDARD_TO_LOOP_ERR_HANDLER (4); \
309 assert (written == 2); \
311 /* See whether we have to emit an escape sequence. */ \
314 /* First see whether we announced that we use this \
316 if ((ann & (16 << (used >> 3))) == 0) \
318 const char *escseq; \
320 if (__builtin_expect (outptr + 4 > outend, 0)) \
322 result = __GCONV_FULL_OUTPUT; \
326 assert ((used >> 3) >= 1 && (used >> 3) <= 3); \
327 escseq = ")A)G*H" + ((used >> 3) - 1) * 2; \
330 *outptr++ = *escseq++; \
331 *outptr++ = *escseq++; \
333 if (used == GB2312_set) \
334 ann = (ann & CNS11643_2_ann) | GB2312_ann; \
335 else if (used == CNS11643_1_set) \
336 ann = (ann & CNS11643_2_ann) | CNS11643_1_ann; \
338 ann |= CNS11643_2_ann; \
341 if (used == CNS11643_2_set) \
343 if (__builtin_expect (outptr + 2 > outend, 0)) \
345 result = __GCONV_FULL_OUTPUT; \
353 /* We only have to emit something is currently ASCII is \
354 selected. Otherwise we are switching within the \
356 if (set == ASCII_set) \
358 if (__builtin_expect (outptr + 1 > outend, 0)) \
360 result = __GCONV_FULL_OUTPUT; \
367 /* Always test the length here since we have used up all the \
368 guaranteed output buffer slots. */ \
369 if (__builtin_expect (outptr + 2 > outend, 0)) \
371 result = __GCONV_FULL_OUTPUT; \
375 else if (__builtin_expect (outptr + 2 > outend, 0)) \
377 result = __GCONV_FULL_OUTPUT; \
381 *outptr++ = buf[0]; \
382 *outptr++ = buf[1]; \
386 /* Now that we wrote the output increment the input pointer. */ \
389 #define LOOP_NEED_FLAGS
390 #define EXTRA_LOOP_DECLS , int *setp
391 #define INIT_PARAMS int set = *setp & CURRENT_SEL_MASK; \
392 int ann = *setp & CURRENT_ANN_MASK
393 #define UPDATE_PARAMS *setp = set | ann
394 #include <iconv/loop.c>
397 /* Now define the toplevel functions. */
398 #include <iconv/skeleton.c>