Update.
[glibc.git] / iconvdata / euc-tw.c
blob8d3b1aa1b5c8113469674f6d022574febc02e288
1 /* Mapping tables for EUC-TW handling.
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
19 02111-1307 USA. */
21 #include <dlfcn.h>
22 #include <stdint.h>
23 #include <cns11643l1.h>
24 #include <cns11643.h>
26 /* Definitions used in the body of the `gconv' function. */
27 #define CHARSET_NAME "EUC-TW//"
28 #define FROM_LOOP from_euc_tw
29 #define TO_LOOP to_euc_tw
30 #define DEFINE_INIT 1
31 #define DEFINE_FINI 1
32 #define MIN_NEEDED_FROM 1
33 #define MAX_NEEDED_FROM 4
34 #define MIN_NEEDED_TO 4
37 /* First define the conversion function from EUC-TW to UCS4. */
38 #define MIN_NEEDED_INPUT MIN_NEEDED_FROM
39 #define MAX_NEEDED_INPUT MAX_NEEDED_FROM
40 #define MIN_NEEDED_OUTPUT MIN_NEEDED_TO
41 #define LOOPFCT FROM_LOOP
42 #define BODY \
43 { \
44 uint32_t ch = *inptr; \
46 if (ch <= 0x7f) \
47 /* Plain ASCII. */ \
48 ++inptr; \
49 else if ((ch <= 0xa0 || ch > 0xfe) && ch != 0x8e) \
50 { \
51 /* This is illegal. */ \
52 STANDARD_FROM_LOOP_ERR_HANDLER (1); \
53 } \
54 else \
55 { \
56 /* Two or more byte character. First test whether the next byte \
57 is also available. */ \
58 uint32_t ch2; \
60 if (inptr + 1 >= inend) \
61 { \
62 /* The second byte is not available. Store the intermediate \
63 result. */ \
64 result = __GCONV_INCOMPLETE_INPUT; \
65 break; \
66 } \
68 ch2 = *(inptr + 1); \
70 /* All second bytes of a multibyte character must be >= 0xa1. */ \
71 if (ch2 < 0xa1 || ch2 == 0xff) \
72 STANDARD_FROM_LOOP_ERR_HANDLER (1); \
74 if (ch == 0x8e) \
75 { \
76 /* This is code set 2: CNS 11643, planes 1 to 16. */ \
77 const char *endp = inptr + 1; \
79 ch = cns11643_to_ucs4 (&endp, inend - inptr - 1, 0x80); \
81 if (ch == 0) \
82 { \
83 /* The third or fourth byte is not available. Store \
84 the intermediate result. */ \
85 result = __GCONV_INCOMPLETE_INPUT; \
86 break; \
87 } \
89 if (ch == __UNKNOWN_10646_CHAR) \
90 /* Illegal input. */ \
91 STANDARD_FROM_LOOP_ERR_HANDLER (1); \
93 inptr += 4; \
94 } \
95 else \
96 { \
97 /* This is code set 1: CNS 11643, plane 1. */ \
98 const unsigned char *endp = inptr; \
100 ch = cns11643l1_to_ucs4 (&endp, inend - inptr, 0x80); \
101 /* Please note that we need not test for the missing input \
102 characters here anymore. */ \
103 if (ch == __UNKNOWN_10646_CHAR) \
104 /* Illegal input. */ \
105 STANDARD_FROM_LOOP_ERR_HANDLER (2); \
107 inptr += 2; \
111 put32 (outptr, ch); \
112 outptr += 4; \
114 #define LOOP_NEED_FLAGS
115 #include <iconv/loop.c>
118 /* Next, define the other direction. */
119 #define MIN_NEEDED_INPUT MIN_NEEDED_TO
120 #define MIN_NEEDED_OUTPUT MIN_NEEDED_FROM
121 #define MAX_NEEDED_OUTPUT MAX_NEEDED_FROM
122 #define LOOPFCT TO_LOOP
123 #define BODY \
125 uint32_t ch = get32 (inptr); \
127 if (ch <= 0x7f) \
128 /* It's plain ASCII. */ \
129 *outptr++ = ch; \
130 else \
132 /* Try the CNS 11643 planes. */ \
133 size_t found; \
135 found = ucs4_to_cns11643l1 (ch, outptr, outend - outptr); \
136 if (__builtin_expect (found, 1) == 0) \
138 /* We ran out of space. */ \
139 result = __GCONV_INCOMPLETE_INPUT; \
140 break; \
142 if (__builtin_expect (found, 1) != __UNKNOWN_10646_CHAR) \
144 /* It's a CNS 11643, plane 1 character, adjust it for EUC-TW. */ \
145 *outptr++ += 0x80; \
146 *outptr++ += 0x80; \
148 else \
150 /* No CNS 11643, plane 1 character. */ \
152 found = ucs4_to_cns11643 (ch, outptr + 1, outend - outptr - 1); \
153 if (__builtin_expect (found, 1) == 0) \
155 /* We ran out of space. */ \
156 result = __GCONV_INCOMPLETE_INPUT; \
157 break; \
159 if (__builtin_expect (found, 0) == __UNKNOWN_10646_CHAR) \
161 UNICODE_TAG_HANDLER (ch, 4); \
163 /* Illegal character. */ \
164 STANDARD_TO_LOOP_ERR_HANDLER (4); \
167 /* It's a CNS 11643 character, adjust it for EUC-TW. */ \
168 *outptr++ = '\x8e'; \
169 *outptr++ += 0xa0; \
170 *outptr++ += 0x80; \
171 *outptr++ += 0x80; \
175 inptr += 4; \
177 #define LOOP_NEED_FLAGS
178 #include <iconv/loop.c>
181 /* Now define the toplevel functions. */
182 #include <iconv/skeleton.c>