1 /* Conversion from and to IBM943.
2 Copyright (C) 2000 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Masahide Washizawa <washi@jp.ibm.com>, 2000.
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. */
31 /* Definitions used in the body of the `gconv' function. */
32 #define CHARSET_NAME "IBM943//"
33 #define FROM_LOOP from_ibm943
34 #define TO_LOOP to_ibm943
36 /* Definitions of initialization and destructor function. */
40 #define MIN_NEEDED_FROM 1
41 #define MAX_NEEDED_FROM 2
42 #define MIN_NEEDED_TO 4
44 /* First, define the conversion function from IBM-943 to UCS4. */
45 #define MIN_NEEDED_INPUT MIN_NEEDED_FROM
46 #define MAX_NEEDED_INPUT MAX_NEEDED_FROM
47 #define MIN_NEEDED_OUTPUT MIN_NEEDED_TO
48 #define LOOPFCT FROM_LOOP
51 const struct gap *rp1 = __ibm943sb_to_ucs4_idx; \
52 const struct gap *rp2 = __ibm943db_to_ucs4_idx; \
53 uint32_t ch = *inptr; \
56 if (__builtin_expect (ch, 0) >= 0xffff) \
61 else if (__builtin_expect (ch, 0) == 0x80 \
62 || __builtin_expect (ch, 0) == 0xa0 \
63 || __builtin_expect (ch, 0) == 0xfd \
64 || __builtin_expect (ch, 0) == 0xfe \
65 || __builtin_expect (ch, 0) == 0xff) \
67 /* This is an illegal character. */ \
68 if (! ignore_errors_p ()) \
70 result = __GCONV_ILLEGAL_INPUT; \
76 while (ch > rp1->end) \
80 /* Use the IBM943 table for single byte. */ \
81 if (__builtin_expect (rp1 == NULL, 0) \
82 || __builtin_expect (ch < rp1->start, 0) \
83 || (res = __ibm943sb_to_ucs4[ch + rp1->idx], \
84 __builtin_expect (res, '\1') == 0 && ch != 0)) \
87 /* Use the IBM943 table for double byte. */ \
88 if (__builtin_expect (inptr + 1 >= inend, 0)) \
90 /* The second character is not available. \
91 Store the intermediate result. */ \
92 result = __GCONV_INCOMPLETE_INPUT; \
96 ch = (ch * 0x100) + inptr[1]; \
97 while (ch > rp2->end) \
100 if (__builtin_expect (rp2 == NULL, 0) \
101 || __builtin_expect (ch < rp2->start, 0) \
102 || (res = __ibm943db_to_ucs4[ch + rp2->idx], \
103 __builtin_expect (res, '\1') == 0 && ch !=0)) \
105 /* This is an illegal character. */ \
106 if (! ignore_errors_p ()) \
108 result = __GCONV_ILLEGAL_INPUT; \
117 put32 (outptr, res); \
126 else if (res == 0x7f) \
128 else if (res == 0xa5) \
130 else if (res == 0x203e) \
132 else if (res == 0x1a) \
134 put32 (outptr, res); \
139 #define LOOP_NEED_FLAGS
140 #include <iconv/loop.c>
142 /* Next, define the other direction. */
143 #define MIN_NEEDED_INPUT MIN_NEEDED_TO
144 #define MIN_NEEDED_OUTPUT MIN_NEEDED_FROM
145 #define MAX_NEEDED_OUTPUT MAX_NEEDED_FROM
146 #define LOOPFCT TO_LOOP
149 const struct gap *rp = __ucs4_to_ibm943sb_idx; \
151 uint32_t ch = get32(inptr); \
152 uint16_t found = TRUE; \
158 if (__builtin_expect (ch, 0) >= 0xffff) \
161 while (ch > rp->end) \
164 /* Use the UCS4 table for single byte. */ \
165 if (__builtin_expect (rp == NULL, 0) \
166 || __builtin_expect (ch < rp->start, 0) \
167 || (sc = __ucs4_to_ibm943sb[ch + rp->idx], \
168 __builtin_expect (sc, '\1') == '\0' && ch != L'\0')) \
171 /* Use the UCS4 table for double byte. */ \
174 high = (sizeof (__ucs4_to_ibm943db) >> 1) \
175 / sizeof (__ucs4_to_ibm943db[0][FROM]); \
177 while (low <= high) \
179 i = (low + high) >> 1; \
180 if (pccode < __ucs4_to_ibm943db[i][FROM]) \
182 else if (pccode > __ucs4_to_ibm943db[i][FROM]) \
186 pccode = __ucs4_to_ibm943db[i][TO]; \
193 if (__builtin_expect (outptr + 2 > outend, 0)) \
195 result = __GCONV_FULL_OUTPUT; \
198 *outptr++ = pccode >> 8 & 0xff; \
199 *outptr++ = pccode & 0xff; \
203 /* This is an illegal character. */ \
204 if (! ignore_errors_p ()) \
206 result = __GCONV_ILLEGAL_INPUT; \
214 if (__builtin_expect (outptr + 1 > outend, 0)) \
216 result = __GCONV_FULL_OUTPUT; \
221 else if (ch == 0x7e) \
227 /* Now that we wrote the output increment the input pointer. */ \
230 #define LOOP_NEED_FLAGS
231 #include <iconv/loop.c>
233 /* Now define the toplevel functions. */
234 #include <iconv/skeleton.c>