1 /* $NetBSD: citrus_dechanyu.c,v 1.5 2013/05/28 16:57:56 joerg Exp $ */
4 * Copyright (c)2007 Citrus Project,
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 #include <sys/cdefs.h>
29 #if defined(LIBC_SCCS) && !defined(lint)
30 __RCSID("$NetBSD: citrus_dechanyu.c,v 1.5 2013/05/28 16:57:56 joerg Exp $");
31 #endif /* LIBC_SCCS and not lint */
33 #include <sys/types.h>
44 #include "citrus_namespace.h"
45 #include "citrus_types.h"
46 #include "citrus_bcs.h"
47 #include "citrus_module.h"
48 #include "citrus_ctype.h"
49 #include "citrus_stdenc.h"
50 #include "citrus_dechanyu.h"
52 /* ----------------------------------------------------------------------
53 * private stuffs used by templates
63 } _DECHanyuEncodingInfo
;
66 _DECHanyuEncodingInfo ei
;
68 /* for future multi-locale facility */
69 _DECHanyuState s_mblen
;
70 _DECHanyuState s_mbrlen
;
71 _DECHanyuState s_mbrtowc
;
72 _DECHanyuState s_mbtowc
;
73 _DECHanyuState s_mbsrtowcs
;
74 _DECHanyuState s_mbsnrtowcs
;
75 _DECHanyuState s_wcrtomb
;
76 _DECHanyuState s_wcsrtombs
;
77 _DECHanyuState s_wcsnrtombs
;
78 _DECHanyuState s_wctomb
;
82 #define _CEI_TO_EI(_cei_) (&(_cei_)->ei)
83 #define _CEI_TO_STATE(_cei_, _func_) (_cei_)->states.__CONCAT(s_,_func_)
85 #define _FUNCNAME(m) __CONCAT(_citrus_DECHanyu_,m)
86 #define _ENCODING_INFO _DECHanyuEncodingInfo
87 #define _CTYPE_INFO _DECHanyuCTypeInfo
88 #define _ENCODING_STATE _DECHanyuState
89 #define _ENCODING_MB_CUR_MAX(_ei_) 4
90 #define _ENCODING_IS_STATE_DEPENDENT 0
91 #define _STATE_NEEDS_EXPLICIT_INIT(_ps_) 0
95 _citrus_DECHanyu_init_state(_DECHanyuEncodingInfo
* __restrict ei
,
96 _DECHanyuState
* __restrict psenc
)
99 _DIAGASSERT(psenc
!= NULL
);
106 _citrus_DECHanyu_pack_state(_DECHanyuEncodingInfo
* __restrict ei
,
107 void * __restrict pspriv
,
108 const _DECHanyuState
* __restrict psenc
)
111 _DIAGASSERT(pspriv
!= NULL
);
112 _DIAGASSERT(psenc
!= NULL
);
114 memcpy(pspriv
, (const void *)psenc
, sizeof(*psenc
));
119 _citrus_DECHanyu_unpack_state(_DECHanyuEncodingInfo
* __restrict ei
,
120 _DECHanyuState
* __restrict psenc
,
121 const void * __restrict pspriv
)
124 _DIAGASSERT(psenc
!= NULL
);
125 _DIAGASSERT(pspriv
!= NULL
);
127 memcpy((void *)psenc
, pspriv
, sizeof(*psenc
));
132 _citrus_DECHanyu_encoding_module_uninit(_DECHanyuEncodingInfo
*ei
)
139 _citrus_DECHanyu_encoding_module_init(_DECHanyuEncodingInfo
* __restrict ei
,
140 const void * __restrict var
, size_t lenvar
)
155 return c
>= 0xA1 && c
<= 0xFE;
162 return c
>= 0x21 && c
<= 0x7E;
177 #define HANYUBIT 0xC2CB0000
182 return c
>= 0x21 && c
<= 0x7E;
187 _citrus_DECHanyu_mbrtowc_priv(_DECHanyuEncodingInfo
* __restrict ei
,
188 wchar_t * __restrict pwc
, const char ** __restrict s
, size_t n
,
189 _DECHanyuState
* __restrict psenc
, size_t * __restrict nresult
)
195 /* ei may be unused */
196 _DIAGASSERT(s
!= NULL
);
197 _DIAGASSERT(psenc
!= NULL
);
198 _DIAGASSERT(nresult
!= NULL
);
201 _citrus_DECHanyu_init_state(ei
, psenc
);
202 *nresult
= _ENCODING_IS_STATE_DEPENDENT
;
208 switch (psenc
->chlen
) {
213 if (is_singlebyte(ch
) != 0) {
216 *nresult
= (size_t)((ch
== 0) ? 0 : 1);
220 if (is_leadbyte(ch
) == 0)
222 psenc
->ch
[psenc
->chlen
++] = ch
;
225 ch
= psenc
->ch
[0] & 0xFF;
226 if (is_leadbyte(ch
) == 0)
230 ch
= psenc
->ch
[0] & 0xFF;
231 if (is_hanyu1(ch
) != 0) {
232 ch
= psenc
->ch
[1] & 0xFF;
233 if (is_hanyu2(ch
) != 0) {
234 wc
|= (wchar_t)HANYUBIT
;
243 switch (psenc
->chlen
) {
245 if (is_hanyu1(ch
) != 0) {
249 if (is_hanyu2(ch
) == 0)
251 psenc
->ch
[psenc
->chlen
++] = ch
;
252 wc
|= (wchar_t)HANYUBIT
;
256 if (is_leadbyte(ch
) == 0)
258 psenc
->ch
[psenc
->chlen
++] = ch
;
265 if (is_leadbyte(ch
) == 0)
267 psenc
->ch
[psenc
->chlen
++] = ch
;
270 ch
= psenc
->ch
[2] & 0xFF;
271 if (is_leadbyte(ch
) == 0)
276 wc
|= (wchar_t)(ch
<< 8);
278 if (is_trailbyte(ch
) == 0)
283 *nresult
= (size_t)(s0
- *s
);
290 *nresult
= (size_t)-2;
295 *nresult
= (size_t)-1;
301 _citrus_DECHanyu_wcrtomb_priv(_DECHanyuEncodingInfo
* __restrict ei
,
302 char * __restrict s
, size_t n
, wchar_t wc
,
303 _DECHanyuState
* __restrict psenc
, size_t * __restrict nresult
)
307 /* ei may be unused */
308 _DIAGASSERT(s
!= NULL
);
309 _DIAGASSERT(psenc
!= NULL
);
310 _DIAGASSERT(nresult
!= NULL
);
312 if (psenc
->chlen
!= 0)
315 /* XXX: assume wchar_t as int */
316 if ((uint32_t)wc
<= 0x7F) {
319 if ((uint32_t)wc
> 0xFFFF) {
320 if ((wc
& ~0xFFFF) != HANYUBIT
)
322 psenc
->ch
[psenc
->chlen
++] = (wc
>> 24) & 0xFF;
323 psenc
->ch
[psenc
->chlen
++] = (wc
>> 16) & 0xFF;
326 ch
= (wc
>> 8) & 0xFF;
327 if (!is_leadbyte(ch
))
329 psenc
->ch
[psenc
->chlen
++] = ch
;
331 if (is_trailbyte(ch
) == 0)
334 psenc
->ch
[psenc
->chlen
++] = ch
;
335 if (n
< psenc
->chlen
) {
336 *nresult
= (size_t)-1;
339 memcpy(s
, psenc
->ch
, psenc
->chlen
);
340 *nresult
= psenc
->chlen
;
346 *nresult
= (size_t)-1;
352 _citrus_DECHanyu_stdenc_wctocs(_DECHanyuEncodingInfo
* __restrict ei
,
353 _csid_t
* __restrict csid
, _index_t
* __restrict idx
, wchar_t wc
)
358 /* ei may be unused */
359 _DIAGASSERT(csid
!= NULL
);
360 _DIAGASSERT(idx
!= NULL
);
364 /* XXX: assume wchar_t as int */
365 if ((uint32_t)wc
> 0x7F) {
366 if ((uint32_t)wc
> 0xFFFF) {
367 if ((wc
& ~0xFFFF) != HANYUBIT
)
371 if (is_leadbyte((wc
>> 8) & 0xFF) == 0 ||
372 is_trailbyte(wc
& 0xFF) == 0)
374 plane
+= (wc
& 0x80) ? 1 : 2;
378 *idx
= (_index_t
)(wc
& mask
);
385 _citrus_DECHanyu_stdenc_cstowc(_DECHanyuEncodingInfo
* __restrict ei
,
386 wchar_t * __restrict wc
, _csid_t csid
, _index_t idx
)
388 /* ei may be unused */
389 _DIAGASSERT(wc
!= NULL
);
394 } else if (csid
<= 4) {
395 if (is_94charset(idx
>> 8) == 0)
397 if (is_94charset(idx
& 0xFF) == 0)
412 _citrus_DECHanyu_stdenc_get_state_desc_generic(
413 _DECHanyuEncodingInfo
* __restrict ei
,
414 _DECHanyuState
* __restrict psenc
, int * __restrict rstate
)
416 /* ei may be unused */
417 _DIAGASSERT(psenc
!= NULL
);
418 _DIAGASSERT(rstate
!= NULL
);
420 *rstate
= (psenc
->chlen
== 0)
421 ? _STDENC_SDGEN_INITIAL
422 : _STDENC_SDGEN_INCOMPLETE_CHAR
;
426 /* ----------------------------------------------------------------------
427 * public interface for ctype
430 _CITRUS_CTYPE_DECLS(DECHanyu
);
431 _CITRUS_CTYPE_DEF_OPS(DECHanyu
);
433 #include "citrus_ctype_template.h"
436 /* ----------------------------------------------------------------------
437 * public interface for stdenc
440 _CITRUS_STDENC_DECLS(DECHanyu
);
441 _CITRUS_STDENC_DEF_OPS(DECHanyu
);
443 #include "citrus_stdenc_template.h"