1 /* $NetBSD: citrus_big5.c,v 1.11 2006/11/22 23:38:27 tnozaki Exp $ */
4 * Copyright (c)2002, 2006 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
31 * The Regents of the University of California. All rights reserved.
33 * This code is derived from software contributed to Berkeley by
34 * Paul Borman at Krystal Technologies.
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions
39 * 1. Redistributions of source code must retain the above copyright
40 * notice, this list of conditions and the following disclaimer.
41 * 2. Redistributions in binary form must reproduce the above copyright
42 * notice, this list of conditions and the following disclaimer in the
43 * documentation and/or other materials provided with the distribution.
44 * 3. Neither the name of the University nor the names of its contributors
45 * may be used to endorse or promote products derived from this software
46 * without specific prior written permission.
48 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
49 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
50 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
51 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
52 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
53 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
54 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
55 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
56 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
57 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
61 #include <sys/cdefs.h>
62 #if defined(LIBC_SCCS) && !defined(lint)
63 __RCSID("$NetBSD: citrus_big5.c,v 1.11 2006/11/22 23:38:27 tnozaki Exp $");
64 #endif /* LIBC_SCCS and not lint */
66 #include <sys/queue.h>
67 #include <sys/types.h>
78 #include "citrus_namespace.h"
79 #include "citrus_types.h"
80 #include "citrus_bcs.h"
81 #include "citrus_module.h"
82 #include "citrus_ctype.h"
83 #include "citrus_stdenc.h"
84 #include "citrus_big5.h"
86 #include "citrus_prop.h"
88 /* ----------------------------------------------------------------------
89 * private stuffs used by templates
97 typedef struct _BIG5Exclude
{
98 TAILQ_ENTRY(_BIG5Exclude
) entry
;
102 typedef TAILQ_HEAD(_BIG5ExcludeList
, _BIG5Exclude
) _BIG5ExcludeList
;
106 _BIG5ExcludeList excludes
;
110 _BIG5EncodingInfo ei
;
112 /* for future multi-locale facility */
115 _BIG5State s_mbrtowc
;
117 _BIG5State s_mbsrtowcs
;
118 _BIG5State s_wcrtomb
;
119 _BIG5State s_wcsrtombs
;
124 #define _CEI_TO_EI(_cei_) (&(_cei_)->ei)
125 #define _CEI_TO_STATE(_cei_, _func_) (_cei_)->states.s_##_func_
127 #define _FUNCNAME(m) _citrus_BIG5_##m
128 #define _ENCODING_INFO _BIG5EncodingInfo
129 #define _CTYPE_INFO _BIG5CTypeInfo
130 #define _ENCODING_STATE _BIG5State
131 #define _ENCODING_MB_CUR_MAX(_ei_) 2
132 #define _ENCODING_IS_STATE_DEPENDENT 0
133 #define _STATE_NEEDS_EXPLICIT_INIT(_ps_) 0
138 _citrus_BIG5_init_state(_BIG5EncodingInfo
* __restrict ei
,
139 _BIG5State
* __restrict s
)
141 memset(s
, 0, sizeof(*s
));
146 _citrus_BIG5_pack_state(_BIG5EncodingInfo
* __restrict ei
,
147 void * __restrict pspriv
,
148 const _BIG5State
* __restrict s
)
150 memcpy(pspriv
, (const void *)s
, sizeof(*s
));
155 _citrus_BIG5_unpack_state(_BIG5EncodingInfo
* __restrict ei
,
156 _BIG5State
* __restrict s
,
157 const void * __restrict pspriv
)
159 memcpy((void *)s
, pspriv
, sizeof(*s
));
163 _citrus_BIG5_check(_BIG5EncodingInfo
*ei
, u_int c
)
165 _DIAGASSERT(ei
!= NULL
);
167 return (ei
->cell
[c
& 0xFF] & 0x1) ? 2 : 1;
171 _citrus_BIG5_check2(_BIG5EncodingInfo
*ei
, u_int c
)
173 _DIAGASSERT(ei
!= NULL
);
175 return (ei
->cell
[c
& 0xFF] & 0x2) ? 1 : 0;
179 _citrus_BIG5_check_excludes(_BIG5EncodingInfo
*ei
, wint_t c
)
181 _BIG5Exclude
*exclude
;
183 _DIAGASSERT(ei
!= NULL
);
185 TAILQ_FOREACH(exclude
, &ei
->excludes
, entry
) {
186 if (c
>= exclude
->start
&& c
<= exclude
->end
)
193 _citrus_BIG5_fill_rowcol(void ** __restrict ctx
, const char * __restrict s
,
194 uint64_t start
, uint64_t end
)
196 _BIG5EncodingInfo
*ei
;
200 _DIAGASSERT(ctx
!= NULL
&& *ctx
!= NULL
);
202 if (start
> 0xFF || end
> 0xFF)
204 ei
= (_BIG5EncodingInfo
*)*ctx
;
205 i
= strcmp("row", s
) ? 1 : 0;
207 for (n
= start
; n
<= end
; ++n
)
208 ei
->cell
[n
& 0xFF] |= i
;
214 _citrus_BIG5_fill_excludes(void ** __restrict ctx
, const char * __restrict s
,
215 uint64_t start
, uint64_t end
)
217 _BIG5EncodingInfo
*ei
;
218 _BIG5Exclude
*exclude
;
220 _DIAGASSERT(ctx
!= NULL
&& *ctx
!= NULL
);
222 if (start
> 0xFFFF || end
> 0xFFFF)
224 ei
= (_BIG5EncodingInfo
*)*ctx
;
225 exclude
= TAILQ_LAST(&ei
->excludes
, _BIG5ExcludeList
);
226 if (exclude
!= NULL
&& (wint_t)start
<= exclude
->end
)
228 exclude
= (void *)malloc(sizeof(*exclude
));
231 exclude
->start
= (wint_t)start
;
232 exclude
->end
= (wint_t)end
;
233 TAILQ_INSERT_TAIL(&ei
->excludes
, exclude
, entry
);
238 static const _citrus_prop_hint_t root_hints
[] = {
239 _CITRUS_PROP_HINT_NUM("row", &_citrus_BIG5_fill_rowcol
),
240 _CITRUS_PROP_HINT_NUM("col", &_citrus_BIG5_fill_rowcol
),
241 _CITRUS_PROP_HINT_NUM("excludes", &_citrus_BIG5_fill_excludes
),
242 _CITRUS_PROP_HINT_END
247 _citrus_BIG5_encoding_module_uninit(_BIG5EncodingInfo
*ei
)
249 _BIG5Exclude
*exclude
;
251 _DIAGASSERT(ei
!= NULL
);
253 while ((exclude
= TAILQ_FIRST(&ei
->excludes
)) != NULL
) {
254 TAILQ_REMOVE(&ei
->excludes
, exclude
, entry
);
261 _citrus_BIG5_encoding_module_init(_BIG5EncodingInfo
* __restrict ei
,
262 const void * __restrict var
, size_t lenvar
)
267 _DIAGASSERT(ei
!= NULL
);
269 memset((void *)ei
, 0, sizeof(*ei
));
270 TAILQ_INIT(&ei
->excludes
);
272 if (lenvar
> 0 && var
!= NULL
) {
273 s
= _bcs_skip_ws_len((const char *)var
, &lenvar
);
274 if (lenvar
> 0 && *s
!= '\0') {
275 err
= _citrus_prop_parse_variable(
276 root_hints
, (void *)ei
, s
, lenvar
);
280 _citrus_BIG5_encoding_module_uninit(ei
);
281 memset((void *)ei
, 0, sizeof(*ei
));
282 TAILQ_INIT(&ei
->excludes
);
286 /* fallback Big5-1984, for backward compatibility. */
287 _citrus_BIG5_fill_rowcol((void **)&ei
, "row", 0xA1, 0xFE);
288 _citrus_BIG5_fill_rowcol((void **)&ei
, "col", 0x40, 0x7E);
289 _citrus_BIG5_fill_rowcol((void **)&ei
, "col", 0xA1, 0xFE);
296 _citrus_BIG5_mbrtowc_priv(_BIG5EncodingInfo
* __restrict ei
,
297 wchar_t * __restrict pwc
,
298 const char ** __restrict s
, size_t n
,
299 _BIG5State
* __restrict psenc
,
300 size_t * __restrict nresult
)
307 _DIAGASSERT(nresult
!= 0);
308 _DIAGASSERT(ei
!= NULL
);
309 _DIAGASSERT(psenc
!= NULL
);
310 _DIAGASSERT(s
!= NULL
&& *s
!= NULL
);
315 _citrus_BIG5_init_state(ei
, psenc
);
320 chlenbak
= psenc
->chlen
;
322 /* make sure we have the first byte in the buffer */
323 switch (psenc
->chlen
) {
327 psenc
->ch
[0] = *s0
++;
338 c
= _citrus_BIG5_check(ei
, psenc
->ch
[0] & 0xff);
341 while (psenc
->chlen
< c
) {
345 psenc
->ch
[psenc
->chlen
] = *s0
++;
352 wchar
= psenc
->ch
[0] & 0xff;
355 if (!_citrus_BIG5_check2(ei
, psenc
->ch
[1] & 0xff))
357 wchar
= ((psenc
->ch
[0] & 0xff) << 8) | (psenc
->ch
[1] & 0xff);
364 if (_citrus_BIG5_check_excludes(ei
, (wint_t)wchar
) != 0)
374 *nresult
= c
- chlenbak
;
380 *nresult
= (size_t)-1;
385 *nresult
= (size_t)-2;
391 _citrus_BIG5_wcrtomb_priv(_BIG5EncodingInfo
* __restrict ei
,
393 size_t n
, wchar_t wc
, _BIG5State
* __restrict psenc
,
394 size_t * __restrict nresult
)
398 _DIAGASSERT(ei
!= NULL
);
399 _DIAGASSERT(nresult
!= 0);
400 _DIAGASSERT(s
!= NULL
);
402 /* check invalid sequence */
404 _citrus_BIG5_check_excludes(ei
, (wint_t)wc
) != 0) {
410 if (_citrus_BIG5_check(ei
, (wc
>> 8) & 0xff) != 2 ||
411 !_citrus_BIG5_check2(ei
, wc
& 0xff)) {
417 if (wc
& ~0xff || !_citrus_BIG5_check(ei
, wc
& 0xff)) {
425 /* bound check failure */
431 s
[0] = (wc
>> 8) & 0xff;
441 *nresult
= (size_t)-1;
447 _citrus_BIG5_stdenc_wctocs(_BIG5EncodingInfo
* __restrict ei
,
448 _csid_t
* __restrict csid
,
449 _index_t
* __restrict idx
, wchar_t wc
)
452 _DIAGASSERT(csid
!= NULL
&& idx
!= NULL
);
454 *csid
= (wc
< 0x100) ? 0 : 1;
462 _citrus_BIG5_stdenc_cstowc(_BIG5EncodingInfo
* __restrict ei
,
463 wchar_t * __restrict wc
,
464 _csid_t csid
, _index_t idx
)
466 _DIAGASSERT(wc
!= NULL
);
482 _citrus_BIG5_stdenc_get_state_desc_generic(_BIG5EncodingInfo
* __restrict ei
,
483 _BIG5State
* __restrict psenc
,
484 int * __restrict rstate
)
487 if (psenc
->chlen
== 0)
488 *rstate
= _STDENC_SDGEN_INITIAL
;
490 *rstate
= _STDENC_SDGEN_INCOMPLETE_CHAR
;
495 /* ----------------------------------------------------------------------
496 * public interface for ctype
499 _CITRUS_CTYPE_DECLS(BIG5
);
500 _CITRUS_CTYPE_DEF_OPS(BIG5
);
502 #include "citrus_ctype_template.h"
505 /* ----------------------------------------------------------------------
506 * public interface for stdenc
509 _CITRUS_STDENC_DECLS(BIG5
);
510 _CITRUS_STDENC_DEF_OPS(BIG5
);
512 #include "citrus_stdenc_template.h"