]> git.ipfire.org Git - thirdparty/glibc.git/blame - iconvdata/euc-jp.c
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / iconvdata / euc-jp.c
CommitLineData
2b474353 1/* Mapping tables for EUC-JP handling.
b168057a 2 Copyright (C) 1998-2015 Free Software Foundation, Inc.
2b474353
UD
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
5
6 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
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.
2b474353
UD
10
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
41bdb6e2 14 Lesser General Public License for more details.
2b474353 15
41bdb6e2 16 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
2b474353 19
55985355 20#include <dlfcn.h>
2b474353 21#include <stdint.h>
8619129f 22#include <gconv.h>
2b474353
UD
23#include <jis0201.h>
24#include <jis0208.h>
25#include <jis0212.h>
26
8619129f 27/* Definitions used in the body of the `gconv' function. */
9b26f5c4 28#define CHARSET_NAME "EUC-JP//"
8619129f
UD
29#define FROM_LOOP from_euc_jp
30#define TO_LOOP to_euc_jp
31#define DEFINE_INIT 1
32#define DEFINE_FINI 1
33#define MIN_NEEDED_FROM 1
34#define MAX_NEEDED_FROM 3
35#define MIN_NEEDED_TO 4
13e402e7 36#define ONE_DIRECTION 0
8619129f
UD
37
38
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
44#define BODY \
45 { \
46 uint32_t ch = *inptr; \
47 \
2528edd3 48 if (ch < 0x8e || (ch >= 0x90 && ch <= 0x9f)) \
8619129f 49 ++inptr; \
2528edd3 50 else if (ch == 0xff) \
8619129f
UD
51 { \
52 /* This is illegal. */ \
e438a468 53 STANDARD_FROM_LOOP_ERR_HANDLER (1); \
8619129f
UD
54 } \
55 else \
56 { \
57 /* Two or more byte character. First test whether the next \
e2806aaf 58 byte is also available. */ \
8619129f
UD
59 int ch2; \
60 \
a1ffb40e 61 if (__glibc_unlikely (inptr + 1 >= inend)) \
8619129f 62 { \
e2806aaf 63 /* The second byte is not available. Store the \
8619129f 64 intermediate result. */ \
d64b6ad0 65 result = __GCONV_INCOMPLETE_INPUT; \
8619129f
UD
66 break; \
67 } \
68 \
69 ch2 = inptr[1]; \
70 \
71 /* All second bytes of a multibyte character must be >= 0xa1. */ \
a1ffb40e 72 if (__glibc_unlikely (ch2 < 0xa1)) \
e438a468 73 STANDARD_FROM_LOOP_ERR_HANDLER (1); \
8619129f
UD
74 \
75 if (ch == 0x8e) \
76 { \
77 /* This is code set 2: half-width katakana. */ \
78 ch = jisx0201_to_ucs4 (ch2); \
392ac969 79 if (__builtin_expect (ch, 0) == __UNKNOWN_10646_CHAR) \
e438a468 80 STANDARD_FROM_LOOP_ERR_HANDLER (1); \
392ac969 81 \
8619129f
UD
82 inptr += 2; \
83 } \
84 else \
85 { \
86 const unsigned char *endp; \
87 \
88 if (ch == 0x8f) \
89 { \
90 /* This is code set 3: JIS X 0212-1990. */ \
91 endp = inptr + 1; \
92 \
55985355 93 ch = jisx0212_to_ucs4 (&endp, inend - endp, 0x80); \
8619129f
UD
94 } \
95 else \
96 { \
97 /* This is code set 1: JIS X 0208. */ \
98 endp = inptr; \
99 \
55985355 100 ch = jisx0208_to_ucs4 (&endp, inend - inptr, 0x80); \
8619129f
UD
101 } \
102 \
55985355 103 if (__builtin_expect (ch, 1) == 0) \
8619129f
UD
104 { \
105 /* Not enough input available. */ \
d64b6ad0 106 result = __GCONV_INCOMPLETE_INPUT; \
8619129f
UD
107 break; \
108 } \
a1ffb40e 109 if (__glibc_unlikely (ch == __UNKNOWN_10646_CHAR)) \
e438a468
UD
110 /* Illegal character. */ \
111 STANDARD_FROM_LOOP_ERR_HANDLER (1); \
85830c4c 112 \
8619129f
UD
113 inptr = endp; \
114 } \
115 } \
116 \
77e1d15a
UD
117 put32 (outptr, ch); \
118 outptr += 4; \
8619129f 119 }
f9ad060c
UD
120#define ONEBYTE_BODY \
121 { \
122 if (c < 0x8e || (c >= 0x90 && c <= 0x9f)) \
123 return c; \
124 else \
125 return WEOF; \
126 }
55985355 127#define LOOP_NEED_FLAGS
8619129f
UD
128#include <iconv/loop.c>
129
130
131/* Next, define the other direction. */
132#define MIN_NEEDED_INPUT MIN_NEEDED_TO
133#define MIN_NEEDED_OUTPUT MIN_NEEDED_FROM
134#define MAX_NEEDED_OUTPUT MAX_NEEDED_FROM
135#define LOOPFCT TO_LOOP
136#define BODY \
137 { \
77e1d15a 138 uint32_t ch = get32 (inptr); \
8619129f 139 \
2528edd3
UD
140 if (ch < 0x8e || (ch >= 0x90 && ch <= 0x9f)) \
141 /* It's plain ASCII or C1. */ \
8619129f 142 *outptr++ = ch; \
5c2a0669
UD
143 else if (ch == 0xa5) \
144 /* YEN sign => backslash */ \
145 *outptr++ = 0x5c; \
146 else if (ch == 0x203e) \
147 /* overscore => asciitilde */ \
148 *outptr++ = 0x7e; \
8619129f
UD
149 else \
150 { \
151 /* Try the JIS character sets. */ \
152 size_t found; \
153 \
154 /* See whether we have room for at least two characters. */ \
a1ffb40e 155 if (__glibc_unlikely (outptr + 1 >= outend)) \
8619129f 156 { \
d64b6ad0 157 result = __GCONV_FULL_OUTPUT; \
8619129f
UD
158 break; \
159 } \
160 \
161 found = ucs4_to_jisx0201 (ch, outptr + 1); \
d64b6ad0 162 if (found != __UNKNOWN_10646_CHAR) \
8619129f
UD
163 { \
164 /* Yes, it's a JIS 0201 character. Store the shift byte. */ \
165 *outptr = 0x8e; \
166 outptr += 2; \
167 } \
168 else \
169 { \
170 /* No JIS 0201 character. */ \
171 found = ucs4_to_jisx0208 (ch, outptr, 2); \
172 /* Please note that we always have enough room for the output. */ \
d64b6ad0 173 if (found != __UNKNOWN_10646_CHAR) \
8619129f
UD
174 { \
175 /* It's a JIS 0208 character, adjust it for EUC-JP. */ \
176 *outptr++ += 0x80; \
177 *outptr++ += 0x80; \
178 } \
179 else \
180 { \
181 /* No JIS 0208 character. */ \
182 found = ucs4_to_jisx0212 (ch, outptr + 1, \
55985355 183 outend - outptr - 1); \
8619129f 184 \
89301d68 185 if (__builtin_expect (found, 1) == 0) \
8619129f
UD
186 { \
187 /* We ran out of space. */ \
d64b6ad0 188 result = __GCONV_FULL_OUTPUT; \
8619129f
UD
189 break; \
190 } \
89301d68 191 else if (__builtin_expect (found, 0) != __UNKNOWN_10646_CHAR) \
8619129f
UD
192 { \
193 /* It's a JIS 0212 character, adjust it for EUC-JP. */ \
194 *outptr++ = 0x8f; \
195 *outptr++ += 0x80; \
196 *outptr++ += 0x80; \
197 } \
198 else \
199 { \
601d2942
UD
200 UNICODE_TAG_HANDLER (ch, 4); \
201 \
8619129f 202 /* Illegal character. */ \
e438a468 203 STANDARD_TO_LOOP_ERR_HANDLER (4); \
8619129f
UD
204 } \
205 } \
206 } \
207 } \
208 \
209 inptr += 4; \
210 }
55985355 211#define LOOP_NEED_FLAGS
8619129f
UD
212#include <iconv/loop.c>
213
214
215/* Now define the toplevel functions. */
216#include <iconv/skeleton.c>