1 /* $NetBSD: citrus_gbk2k.c,v 1.6 2006/02/15 19:50:27 tnozaki Exp $ */
2 /* $DragonFly: src/lib/libc/citrus/modules/citrus_gbk2k.c,v 1.2 2008/04/10 10:21:01 hasso Exp $ */
5 * Copyright (c)2003 Citrus Project,
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 #include <sys/types.h>
41 #include "citrus_namespace.h"
42 #include "citrus_types.h"
43 #include "citrus_bcs.h"
44 #include "citrus_module.h"
45 #include "citrus_ctype.h"
46 #include "citrus_stdenc.h"
47 #include "citrus_gbk2k.h"
50 /* ----------------------------------------------------------------------
51 * private stuffs used by templates
54 typedef struct _GBK2KState
{
64 _GBK2KEncodingInfo ei
;
66 /* for future multi-locale facility */
69 _GBK2KState s_mbrtowc
;
71 _GBK2KState s_mbsrtowcs
;
72 _GBK2KState s_wcrtomb
;
73 _GBK2KState s_wcsrtombs
;
78 #define _CEI_TO_EI(_cei_) (&(_cei_)->ei)
79 #define _CEI_TO_STATE(_cei_, _func_) (_cei_)->states.s_##_func_
81 #define _FUNCNAME(m) _citrus_GBK2K_##m
82 #define _ENCODING_INFO _GBK2KEncodingInfo
83 #define _CTYPE_INFO _GBK2KCTypeInfo
84 #define _ENCODING_STATE _GBK2KState
85 #define _ENCODING_MB_CUR_MAX(_ei_) (_ei_)->mb_cur_max
86 #define _ENCODING_IS_STATE_DEPENDENT 0
87 #define _STATE_NEEDS_EXPLICIT_INIT(_ps_) 0
91 _citrus_GBK2K_init_state(_GBK2KEncodingInfo
* __restrict ei
,
92 _GBK2KState
* __restrict s
)
94 memset(s
, 0, sizeof(*s
));
99 _citrus_GBK2K_pack_state(_GBK2KEncodingInfo
* __restrict ei
,
100 void * __restrict pspriv
,
101 const _GBK2KState
* __restrict s
)
103 memcpy(pspriv
, (const void *)s
, sizeof(*s
));
108 _citrus_GBK2K_unpack_state(_GBK2KEncodingInfo
* __restrict ei
,
109 _GBK2KState
* __restrict s
,
110 const void * __restrict pspriv
)
112 memcpy((void *)s
, pspriv
, sizeof(*s
));
116 _mb_singlebyte(int c
)
126 return (0x81 <= c
&& c
<= 0xfe);
133 return ((0x40 <= c
&& c
<= 0x7e) || (0x80 <= c
&& c
<= 0xfe));
140 return (0x30 <= c
&& c
<= 0x39);
148 c
= (u_int32_t
)v
; /* XXX */
149 if (!(c
& 0xffffff00))
151 if (!(c
& 0xffff0000))
156 #define _PSENC (psenc->ch[psenc->chlen - 1])
157 #define _PUSH_PSENC(c) (psenc->ch[psenc->chlen++] = (c))
160 _citrus_GBK2K_mbrtowc_priv(_GBK2KEncodingInfo
* __restrict ei
,
161 wchar_t * __restrict pwc
,
162 const char ** __restrict s
, size_t n
,
163 _GBK2KState
* __restrict psenc
,
164 size_t * __restrict nresult
)
170 _DIAGASSERT(ei
!= NULL
);
171 /* pwc may be NULL */
172 _DIAGASSERT(s
!= NULL
);
173 _DIAGASSERT(psenc
!= NULL
);
178 /* _citrus_GBK2K_init_state(ei, psenc); */
184 chlenbak
= psenc
->chlen
;
186 switch (psenc
->chlen
) {
188 if (!_mb_leadbyte (_PSENC
))
192 if (!_mb_surrogate(_PSENC
) || _mb_trailbyte(_PSENC
))
196 if (!_mb_leadbyte (_PSENC
))
211 switch (psenc
->chlen
) {
213 if (_mb_singlebyte(_PSENC
))
215 if (_mb_leadbyte (_PSENC
))
219 if (_mb_trailbyte (_PSENC
))
221 if (ei
->mb_cur_max
== 4 &&
222 _mb_surrogate (_PSENC
))
226 if (_mb_leadbyte (_PSENC
))
230 if (_mb_surrogate (_PSENC
))
241 wc
= (wc
<< 8) | (*s1
++ & 0xff);
246 *nresult
= (wc
== 0) ? 0 : psenc
->chlen
- chlenbak
;
247 /* _citrus_GBK2K_init_state(ei, psenc); */
254 *nresult
= (size_t)-2;
262 *nresult
= (size_t)-1;
267 _citrus_GBK2K_wcrtomb_priv(_GBK2KEncodingInfo
* __restrict ei
,
268 char * __restrict s
, size_t n
, wchar_t wc
,
269 _GBK2KState
* __restrict psenc
,
270 size_t * __restrict nresult
)
274 _DIAGASSERT(ei
!= NULL
);
275 _DIAGASSERT(s
!= NULL
);
276 _DIAGASSERT(psenc
!= NULL
);
278 if (psenc
->chlen
!= 0) {
291 if (!_mb_singlebyte(_PUSH_PSENC(wc
))) {
297 if (!_mb_leadbyte (_PUSH_PSENC(wc
>> 8)) ||
298 !_mb_trailbyte (_PUSH_PSENC(wc
))) {
304 if (ei
->mb_cur_max
!= 4 ||
305 !_mb_leadbyte (_PUSH_PSENC(wc
>> 24)) ||
306 !_mb_surrogate (_PUSH_PSENC(wc
>> 16)) ||
307 !_mb_leadbyte (_PUSH_PSENC(wc
>> 8)) ||
308 !_mb_surrogate (_PUSH_PSENC(wc
))) {
315 _DIAGASSERT(len
== psenc
->chlen
);
317 memcpy(s
, psenc
->ch
, psenc
->chlen
);
318 *nresult
= psenc
->chlen
;
319 /* _citrus_GBK2K_init_state(ei, psenc); */
325 *nresult
= (size_t)-1;
331 _citrus_GBK2K_stdenc_wctocs(_GBK2KEncodingInfo
* __restrict ei
,
332 _csid_t
* __restrict csid
,
333 _index_t
* __restrict idx
, wchar_t wc
)
337 _DIAGASSERT(csid
!= NULL
&& idx
!= NULL
);
339 if ((u_int32_t
)wc
<0x80) {
343 } else if ((u_int32_t
)wc
>=0x10000) {
348 ch
= (u_int8_t
)(wc
>> 8);
350 if (ch
>=0xA1 && cl
>=0xA1) {
353 *idx
= (_index_t
)wc
& 0x7F7FU
;
355 /* extended area (0x8140-) */
366 _citrus_GBK2K_stdenc_cstowc(_GBK2KEncodingInfo
* __restrict ei
,
367 wchar_t * __restrict wc
,
368 _csid_t csid
, _index_t idx
)
371 _DIAGASSERT(wc
!= NULL
);
380 *wc
= (wchar_t)idx
| 0x8080U
;
388 if (ei
->mb_cur_max
!= 4)
401 _citrus_GBK2K_stdenc_get_state_desc_generic(_GBK2KEncodingInfo
* __restrict ei
,
402 _GBK2KState
* __restrict psenc
,
403 int * __restrict rstate
)
406 if (psenc
->chlen
== 0)
407 *rstate
= _STDENC_SDGEN_INITIAL
;
409 *rstate
= _STDENC_SDGEN_INCOMPLETE_CHAR
;
416 _citrus_GBK2K_encoding_module_init(_GBK2KEncodingInfo
* __restrict ei
,
417 const void * __restrict var
, size_t lenvar
)
421 _DIAGASSERT(ei
!= NULL
);
424 #define MATCH(x, act) \
426 if (lenvar >= (sizeof(#x)-1) && \
427 _bcs_strncasecmp(p, #x, sizeof(#x)-1) == 0) { \
429 lenvar -= sizeof(#x)-1; \
432 } while (/*CONSTCOND*/0)
433 memset((void *)ei
, 0, sizeof(*ei
));
436 switch (_bcs_tolower(*p
)) {
438 MATCH("2byte", ei
->mb_cur_max
= 2);
450 _citrus_GBK2K_encoding_module_uninit(_GBK2KEncodingInfo
*ei
)
455 /* ----------------------------------------------------------------------
456 * public interface for ctype
459 _CITRUS_CTYPE_DECLS(GBK2K
);
460 _CITRUS_CTYPE_DEF_OPS(GBK2K
);
462 #include "citrus_ctype_template.h"
464 /* ----------------------------------------------------------------------
465 * public interface for stdenc
468 _CITRUS_STDENC_DECLS(GBK2K
);
469 _CITRUS_STDENC_DEF_OPS(GBK2K
);
471 #include "citrus_stdenc_template.h"