Remove pre-2.4 Linux kernel support.
[platform/upstream/glibc.git] / iconvdata / ibm930.c
1 /* Conversion from and to IBM930.
2    Copyright (C) 2000-2002, 2008 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
4    Contributed by Masahide Washizawa <washi@yamato.ibm.co.jp>, 2000.
5
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.
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
14    Lesser General Public License for more details.
15
16    You should have received a copy of the GNU Lesser General Public
17    License along with the GNU C Library; if not, see
18    <http://www.gnu.org/licenses/>.  */
19
20 #include <dlfcn.h>
21 #include <stdint.h>
22 #include <wchar.h>
23 #include <byteswap.h>
24 #include "ibm930.h"
25
26 /* The shift sequences for this charset (it does not use ESC). */
27 #define SI              0x0F  /* Shift In, host code to turn DBCS off.  */
28 #define SO              0x0E  /* Shift Out, host code to turn DBCS on.  */
29
30 /* Definitions used in the body of the `gconv' function.  */
31 #define CHARSET_NAME    "IBM930//"
32 #define FROM_LOOP       from_ibm930
33 #define TO_LOOP         to_ibm930
34 #define FROM_LOOP_MIN_NEEDED_FROM       1
35 #define FROM_LOOP_MAX_NEEDED_FROM       2
36 #define FROM_LOOP_MIN_NEEDED_TO         4
37 #define FROM_LOOP_MAX_NEEDED_TO         4
38 #define TO_LOOP_MIN_NEEDED_FROM         4
39 #define TO_LOOP_MAX_NEEDED_FROM         4
40 #define TO_LOOP_MIN_NEEDED_TO           1
41 #define TO_LOOP_MAX_NEEDED_TO           3
42 #define PREPARE_LOOP \
43   int save_curcs;                                                             \
44   int *curcsp = &data->__statep->__count;
45 #define EXTRA_LOOP_ARGS         , curcsp
46
47 /* Definitions of initialization and destructor function.  */
48 #define DEFINE_INIT     1
49 #define DEFINE_FINI     1
50
51
52 /* Since this is a stateful encoding we have to provide code which resets
53    the output state to the initial state.  This has to be done during the
54    flushing.  */
55 #define EMIT_SHIFT_TO_INIT \
56   if ((data->__statep->__count & ~7) != sb)                                   \
57     {                                                                         \
58       if (FROM_DIRECTION)                                                     \
59         data->__statep->__count &= 7;                                         \
60       else                                                                    \
61         {                                                                     \
62           /* We are not in the initial state.  To switch back we have         \
63              to emit `SI'.  */                                                \
64           if (__builtin_expect (outbuf >= outend, 0))                         \
65             /* We don't have enough room in the output buffer.  */            \
66             status = __GCONV_FULL_OUTPUT;                                     \
67           else                                                                \
68             {                                                                 \
69               /* Write out the shift sequence.  */                            \
70               *outbuf++ = SI;                                                 \
71               data->__statep->__count &= 7;                                   \
72             }                                                                 \
73         }                                                                     \
74     }
75
76
77 /* Since we might have to reset input pointer we must be able to save
78    and retore the state.  */
79 #define SAVE_RESET_STATE(Save) \
80   if (Save)                                                                   \
81     save_curcs = *curcsp;                                                     \
82   else                                                                        \
83     *curcsp = save_curcs
84
85
86 /* Current codeset type.  */
87 enum
88 {
89   sb = 0,
90   db = 64
91 };
92
93
94 /* First, define the conversion function from IBM-930 to UCS4.  */
95 #define MIN_NEEDED_INPUT        FROM_LOOP_MIN_NEEDED_FROM
96 #define MAX_NEEDED_INPUT        FROM_LOOP_MAX_NEEDED_FROM
97 #define MIN_NEEDED_OUTPUT       FROM_LOOP_MIN_NEEDED_TO
98 #define MAX_NEEDED_OUTPUT       FROM_LOOP_MAX_NEEDED_TO
99 #define LOOPFCT                 FROM_LOOP
100 #define BODY \
101   {                                                                           \
102     uint32_t ch = *inptr;                                                     \
103     uint32_t res;                                                             \
104                                                                               \
105     if (__builtin_expect (ch, 0) == SO)                                       \
106       {                                                                       \
107         /* Shift OUT, change to DBCS converter.  */                           \
108         if (curcs == db)                                                      \
109           {                                                                   \
110             result = __GCONV_ILLEGAL_INPUT;                                   \
111             break;                                                            \
112           }                                                                   \
113         curcs = db;                                                           \
114         ++inptr;                                                              \
115         continue;                                                             \
116       }                                                                       \
117     else if (__builtin_expect (ch, 0) == SI)                                  \
118       {                                                                       \
119         /* Shift IN, change to SBCS converter */                              \
120         if (curcs == sb)                                                      \
121           {                                                                   \
122             result = __GCONV_ILLEGAL_INPUT;                                   \
123             break;                                                            \
124           }                                                                   \
125         curcs = sb;                                                           \
126         ++inptr;                                                              \
127         continue;                                                             \
128       }                                                                       \
129                                                                               \
130     if (curcs == sb)                                                          \
131       {                                                                       \
132         /* Use the IBM930 table for single byte.  */                          \
133         res = __ibm930sb_to_ucs4[ch];                                         \
134         if (__builtin_expect (res, L'\1') == L'\0' && ch != '\0')             \
135           {                                                                   \
136             /* This is an illegal character.  */                              \
137             STANDARD_FROM_LOOP_ERR_HANDLER (1);                               \
138           }                                                                   \
139         else                                                                  \
140           {                                                                   \
141             put32 (outptr, res);                                              \
142             outptr += 4;                                                      \
143           }                                                                   \
144         ++inptr;                                                              \
145       }                                                                       \
146     else                                                                      \
147       {                                                                       \
148         /* Use the IBM930 table for double byte. */                           \
149         const struct gap *rp2 = __ibm930db_to_ucs4_idx;                       \
150                                                                               \
151         assert (curcs == db);                                                 \
152                                                                               \
153         if (__builtin_expect (inptr + 1 >= inend, 0))                         \
154           {                                                                   \
155             /* The second character is not available.  Store the              \
156                intermediate result. */                                        \
157             result = __GCONV_INCOMPLETE_INPUT;                                \
158             break;                                                            \
159           }                                                                   \
160                                                                               \
161         ch = (ch * 0x100) + inptr[1];                                         \
162         while (ch > rp2->end)                                                 \
163           ++rp2;                                                              \
164                                                                               \
165         if (__builtin_expect (ch < rp2->start, 0)                             \
166             || (res = __ibm930db_to_ucs4[ch + rp2->idx],                      \
167                 __builtin_expect (res, L'\1') == L'\0' && ch != '\0'))        \
168           {                                                                   \
169             /* This is an illegal character.  */                              \
170             STANDARD_FROM_LOOP_ERR_HANDLER (2);                               \
171           }                                                                   \
172         else                                                                  \
173           {                                                                   \
174             put32 (outptr, res);                                              \
175             outptr += 4;                                                      \
176           }                                                                   \
177         inptr += 2;                                                           \
178       }                                                                       \
179   }
180 #define LOOP_NEED_FLAGS
181 #define EXTRA_LOOP_DECLS        , int *curcsp
182 #define INIT_PARAMS             int curcs = *curcsp & ~7
183 #define UPDATE_PARAMS           *curcsp = curcs
184 #include <iconv/loop.c>
185
186 /* Next, define the other direction.  */
187 #define MIN_NEEDED_INPUT        TO_LOOP_MIN_NEEDED_FROM
188 #define MAX_NEEDED_INPUT        TO_LOOP_MAX_NEEDED_FROM
189 #define MIN_NEEDED_OUTPUT       TO_LOOP_MIN_NEEDED_TO
190 #define MAX_NEEDED_OUTPUT       TO_LOOP_MAX_NEEDED_TO
191 #define LOOPFCT                 TO_LOOP
192 #define BODY \
193   {                                                                           \
194     uint32_t ch = get32 (inptr);                                              \
195     const struct gap *rp1 = __ucs4_to_ibm930sb_idx;                           \
196     const struct gap *rp2 = __ucs4_to_ibm930db_idx;                           \
197     const char *cp;                                                           \
198                                                                               \
199     if (__builtin_expect (ch >= 0xffff, 0))                                   \
200       {                                                                       \
201         UNICODE_TAG_HANDLER (ch, 4);                                          \
202                                                                               \
203         STANDARD_TO_LOOP_ERR_HANDLER (4);                                     \
204       }                                                                       \
205                                                                               \
206     while (ch > rp1->end)                                                     \
207       ++rp1;                                                                  \
208                                                                               \
209     /* Use the UCS4 table for single byte.  */                                \
210     if (__builtin_expect (ch < rp1->start, 0)                                 \
211         || (cp = __ucs4_to_ibm930sb[ch + rp1->idx],                           \
212             __builtin_expect (cp[0], L'\1') == L'\0' && ch != '\0'))          \
213       {                                                                       \
214         /* Use the UCS4 table for double byte. */                             \
215         while (ch > rp2->end)                                                 \
216           ++rp2;                                                              \
217                                                                               \
218         if (__builtin_expect (ch < rp2->start, 0)                             \
219             || (cp = __ucs4_to_ibm930db[ch + rp2->idx],                       \
220                 __builtin_expect (cp[0], L'\1')== L'\0' && ch != '\0'))       \
221           {                                                                   \
222             /* This is an illegal character.  */                              \
223             STANDARD_TO_LOOP_ERR_HANDLER (4);                                 \
224           }                                                                   \
225         else                                                                  \
226           {                                                                   \
227             if (curcs == sb)                                                  \
228               {                                                               \
229                 if (__builtin_expect (outptr + 1 > outend, 0))                \
230                   {                                                           \
231                     result = __GCONV_FULL_OUTPUT;                             \
232                     break;                                                    \
233                   }                                                           \
234                 *outptr++ = SO;                                               \
235                 curcs = db;                                                   \
236               }                                                               \
237                                                                               \
238             if (__builtin_expect (outptr + 2 > outend, 0))                    \
239               {                                                               \
240                 result = __GCONV_FULL_OUTPUT;                                 \
241                 break;                                                        \
242               }                                                               \
243             *outptr++ = cp[0];                                                \
244             *outptr++ = cp[1];                                                \
245           }                                                                   \
246       }                                                                       \
247     else                                                                      \
248       {                                                                       \
249         if (curcs == db)                                                      \
250           {                                                                   \
251             if (__builtin_expect (outptr + 1 > outend, 0))                    \
252               {                                                               \
253                 result = __GCONV_FULL_OUTPUT;                                 \
254                 break;                                                        \
255               }                                                               \
256             *outptr++ = SI;                                                   \
257           }                                                                   \
258                                                                               \
259         if (__builtin_expect (outptr + 1 > outend, 0))                        \
260           {                                                                   \
261             result = __GCONV_FULL_OUTPUT;                                     \
262             break;                                                            \
263           }                                                                   \
264         if (ch == 0x7e)                                                       \
265           *outptr++ = 0xa1;                                                   \
266         else if (ch == 0x5c)                                                  \
267           *outptr++ = 0x5b;                                                   \
268         else                                                                  \
269           *outptr++ = cp[0];                                                  \
270         curcs = sb;                                                           \
271       }                                                                       \
272                                                                               \
273     /* Now that we wrote the output increment the input pointer.  */          \
274     inptr += 4;                                                               \
275   }
276 #define LOOP_NEED_FLAGS
277 #define EXTRA_LOOP_DECLS        , int *curcsp
278 #define INIT_PARAMS             int curcs = *curcsp & ~7
279 #define REINIT_PARAMS           curcs = *curcsp & ~7
280 #define UPDATE_PARAMS           *curcsp = curcs
281 #include <iconv/loop.c>
282
283 /* Now define the toplevel functions.  */
284 #include <iconv/skeleton.c>