1 /* Conversion from and to IBM943.
2 Copyright (C) 2000-2002, 2004 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 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
29 /* Definitions used in the body of the `gconv' function. */
30 #define CHARSET_NAME "IBM943//"
31 #define FROM_LOOP from_ibm943
32 #define TO_LOOP to_ibm943
34 /* Definitions of initialization and destructor function. */
38 #define MIN_NEEDED_FROM 1
39 #define MAX_NEEDED_FROM 2
40 #define MIN_NEEDED_TO 4
42 /* First, define the conversion function from IBM-943 to UCS4. */
43 #define MIN_NEEDED_INPUT MIN_NEEDED_FROM
44 #define MAX_NEEDED_INPUT MAX_NEEDED_FROM
45 #define MIN_NEEDED_OUTPUT MIN_NEEDED_TO
46 #define LOOPFCT FROM_LOOP
49 const struct gap *rp2 = __ibm943db_to_ucs4_idx; \
50 uint32_t ch = *inptr; \
53 if (__builtin_expect (ch == 0x80, 0) \
54 || __builtin_expect (ch == 0xa0, 0) \
55 || __builtin_expect (ch == 0xfd, 0) \
56 || __builtin_expect (ch == 0xfe, 0) \
57 || __builtin_expect (ch == 0xff, 0)) \
59 /* This is an illegal character. */ \
60 STANDARD_FROM_LOOP_ERR_HANDLER (1); \
63 /* Use the IBM943 table for single byte. */ \
64 if (__builtin_expect (ch > 0xdf, 0) \
65 || (res = __ibm943sb_to_ucs4[ch], \
66 __builtin_expect (res == 0, 0) && ch != 0)) \
68 /* Use the IBM943 table for double byte. */ \
69 if (__builtin_expect (inptr + 1 >= inend, 0)) \
71 /* The second character is not available. \
72 Store the intermediate result. */ \
73 result = __GCONV_INCOMPLETE_INPUT; \
77 ch = (ch * 0x100) + inptr[1]; \
78 while (ch > rp2->end) \
81 if (__builtin_expect (rp2 == NULL, 0) \
82 || __builtin_expect (ch < rp2->start, 0) \
83 || (res = __ibm943db_to_ucs4[ch + rp2->idx], \
84 __builtin_expect (res, '\1') == 0 && ch !=0)) \
86 /* This is an illegal character. */ \
87 STANDARD_FROM_LOOP_ERR_HANDLER (2); \
91 put32 (outptr, res); \
100 else if (res == 0x203e) \
102 put32 (outptr, res); \
107 #define LOOP_NEED_FLAGS
108 #define ONEBYTE_BODY \
110 if (c == 0x80 || c == 0xa0 || c >= 0xe0) \
112 uint32_t res = __ibm943sb_to_ucs4[c]; \
113 if (res == 0 && c != 0) \
117 else if (res == 0x203e) \
121 #include <iconv/loop.c>
123 /* Next, define the other direction. */
124 #define MIN_NEEDED_INPUT MIN_NEEDED_TO
125 #define MIN_NEEDED_OUTPUT MIN_NEEDED_FROM
126 #define MAX_NEEDED_OUTPUT MAX_NEEDED_FROM
127 #define LOOPFCT TO_LOOP
130 const struct gap *rp = __ucs4_to_ibm943sb_idx; \
132 uint32_t ch = get32(inptr); \
139 if (__builtin_expect (ch >= 0xffff, 0)) \
141 UNICODE_TAG_HANDLER (ch, 4); \
145 while (ch > rp->end) \
148 /* Use the UCS4 table for single byte. */ \
149 if (__builtin_expect (rp == NULL, 0) \
150 || __builtin_expect (ch < rp->start, 0) \
151 || (sc = __ucs4_to_ibm943sb[ch + rp->idx], \
152 __builtin_expect (sc, '\1') == '\0' && ch != L'\0')) \
155 /* Use the UCS4 table for double byte. */ \
158 high = (sizeof (__ucs4_to_ibm943db) >> 1) \
159 / sizeof (__ucs4_to_ibm943db[0][FROM]); \
161 if (__builtin_expect (rp != NULL, 1)) \
164 i = (low + high) >> 1; \
165 if (pccode < __ucs4_to_ibm943db[i][FROM]) \
167 else if (pccode > __ucs4_to_ibm943db[i][FROM]) \
171 pccode = __ucs4_to_ibm943db[i][TO]; \
178 if (__builtin_expect (outptr + 2 > outend, 0)) \
180 result = __GCONV_FULL_OUTPUT; \
183 *outptr++ = pccode >> 8 & 0xff; \
184 *outptr++ = pccode & 0xff; \
188 /* This is an illegal character. */ \
189 STANDARD_TO_LOOP_ERR_HANDLER (4); \
194 if (__builtin_expect (outptr + 1 > outend, 0)) \
196 result = __GCONV_FULL_OUTPUT; \
201 else if (ch == 0x7e) \
207 /* Now that we wrote the output increment the input pointer. */ \
210 #define LOOP_NEED_FLAGS
211 #include <iconv/loop.c>
213 /* Now define the toplevel functions. */
214 #include <iconv/skeleton.c>