1 /* Mapping tables for EUC-JP handling.
2 Copyright (C) 1998, 1999, 2000 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. */
28 /* Definitions used in the body of the `gconv' function. */
29 #define CHARSET_NAME "EUC-JP//"
30 #define FROM_LOOP from_euc_jp
31 #define TO_LOOP to_euc_jp
34 #define MIN_NEEDED_FROM 1
35 #define MAX_NEEDED_FROM 3
36 #define MIN_NEEDED_TO 4
39 /* First define the conversion function from EUC-JP to UCS4. */
40 #define MIN_NEEDED_INPUT MIN_NEEDED_FROM
41 #define MAX_NEEDED_INPUT MAX_NEEDED_FROM
42 #define MIN_NEEDED_OUTPUT MIN_NEEDED_TO
43 #define LOOPFCT FROM_LOOP
46 uint32_t ch = *inptr; \
50 else if ((__builtin_expect (ch, 0xa1) <= 0xa0 && ch != 0x8e && ch != 0x8f)\
51 || __builtin_expect (ch, 0xfe) > 0xfe) \
53 /* This is illegal. */ \
54 if (! ignore_errors_p ()) \
56 result = __GCONV_ILLEGAL_INPUT; \
66 /* Two or more byte character. First test whether the next \
67 character is also available. */ \
70 if (__builtin_expect (inptr + 1 >= inend, 0)) \
72 /* The second character is not available. Store the \
73 intermediate result. */ \
74 result = __GCONV_INCOMPLETE_INPUT; \
80 /* All second bytes of a multibyte character must be >= 0xa1. */ \
81 if (__builtin_expect (ch2, 0xa1) < 0xa1) \
83 /* This is an illegal character. */ \
84 if (! ignore_errors_p ()) \
86 result = __GCONV_ILLEGAL_INPUT; \
97 /* This is code set 2: half-width katakana. */ \
98 ch = jisx0201_to_ucs4 (ch2); \
103 const unsigned char *endp; \
107 /* This is code set 3: JIS X 0212-1990. */ \
110 ch = jisx0212_to_ucs4 (&endp, inend - endp, 0x80); \
114 /* This is code set 1: JIS X 0208. */ \
117 ch = jisx0208_to_ucs4 (&endp, inend - inptr, 0x80); \
120 if (__builtin_expect (ch, 1) == 0) \
122 /* Not enough input available. */ \
123 result = __GCONV_INCOMPLETE_INPUT; \
126 if (__builtin_expect (ch, 0) == __UNKNOWN_10646_CHAR) \
128 /* Illegal character. */ \
129 if (! ignore_errors_p ()) \
131 /* This is an illegal character. */ \
132 result = __GCONV_ILLEGAL_INPUT; \
144 put32 (outptr, ch); \
147 #define LOOP_NEED_FLAGS
148 #include <iconv/loop.c>
151 /* Next, define the other direction. */
152 #define MIN_NEEDED_INPUT MIN_NEEDED_TO
153 #define MIN_NEEDED_OUTPUT MIN_NEEDED_FROM
154 #define MAX_NEEDED_OUTPUT MAX_NEEDED_FROM
155 #define LOOPFCT TO_LOOP
158 uint32_t ch = get32 (inptr); \
161 /* It's plain ASCII. */ \
163 else if (ch == 0xa5) \
164 /* YEN sign => backslash */ \
166 else if (ch == 0x203e) \
167 /* overscore => asciitilde */ \
171 /* Try the JIS character sets. */ \
174 /* See whether we have room for at least two characters. */ \
175 if (__builtin_expect (outptr + 1 >= outend, 0)) \
177 result = __GCONV_FULL_OUTPUT; \
181 found = ucs4_to_jisx0201 (ch, outptr + 1); \
182 if (found != __UNKNOWN_10646_CHAR) \
184 /* Yes, it's a JIS 0201 character. Store the shift byte. */ \
190 /* No JIS 0201 character. */ \
191 found = ucs4_to_jisx0208 (ch, outptr, 2); \
192 /* Please note that we always have enough room for the output. */ \
193 if (found != __UNKNOWN_10646_CHAR) \
195 /* It's a JIS 0208 character, adjust it for EUC-JP. */ \
201 /* No JIS 0208 character. */ \
202 found = ucs4_to_jisx0212 (ch, outptr + 1, \
203 outend - outptr - 1); \
205 if (__builtin_expect (found, 1) == 0) \
207 /* We ran out of space. */ \
208 result = __GCONV_FULL_OUTPUT; \
211 else if (__builtin_expect (found, 0) != __UNKNOWN_10646_CHAR) \
213 /* It's a JIS 0212 character, adjust it for EUC-JP. */ \
220 /* Illegal character. */ \
221 if (step_data->__trans.__trans_fct != NULL) \
223 result = DL_CALL_FCT (step_data->__trans.__trans_fct, \
224 (step, step_data, *inptrp, \
225 &inptr, inend, *outptrp, \
228 if (result != __GCONV_OK) \
231 else if (! ignore_errors_p ()) \
233 result = __GCONV_ILLEGAL_INPUT; \
249 #define LOOP_NEED_FLAGS
250 #include <iconv/loop.c>
253 /* Now define the toplevel functions. */
254 #include <iconv/skeleton.c>