1 /* $NetBSD: citrus_big5.c,v 1.15 2014/06/24 22:24:18 spz 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.15 2014/06/24 22:24:18 spz 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_mbsnrtowcs
;
119 _BIG5State s_wcrtomb
;
120 _BIG5State s_wcsrtombs
;
121 _BIG5State s_wcsnrtombs
;
126 #define _CEI_TO_EI(_cei_) (&(_cei_)->ei)
127 #define _CEI_TO_STATE(_cei_, _func_) (_cei_)->states.s_##_func_
129 #define _FUNCNAME(m) _citrus_BIG5_##m
130 #define _ENCODING_INFO _BIG5EncodingInfo
131 #define _CTYPE_INFO _BIG5CTypeInfo
132 #define _ENCODING_STATE _BIG5State
133 #define _ENCODING_MB_CUR_MAX(_ei_) 2
134 #define _ENCODING_IS_STATE_DEPENDENT 0
135 #define _STATE_NEEDS_EXPLICIT_INIT(_ps_) 0
140 _citrus_BIG5_init_state(_BIG5EncodingInfo
* __restrict ei
,
141 _BIG5State
* __restrict s
)
143 memset(s
, 0, sizeof(*s
));
148 _citrus_BIG5_pack_state(_BIG5EncodingInfo
* __restrict ei
,
149 void * __restrict pspriv
,
150 const _BIG5State
* __restrict s
)
152 memcpy(pspriv
, (const void *)s
, sizeof(*s
));
157 _citrus_BIG5_unpack_state(_BIG5EncodingInfo
* __restrict ei
,
158 _BIG5State
* __restrict s
,
159 const void * __restrict pspriv
)
161 memcpy((void *)s
, pspriv
, sizeof(*s
));
165 _citrus_BIG5_check(_BIG5EncodingInfo
*ei
, u_int c
)
167 _DIAGASSERT(ei
!= NULL
);
169 return (ei
->cell
[c
& 0xFF] & 0x1) ? 2 : 1;
173 _citrus_BIG5_check2(_BIG5EncodingInfo
*ei
, u_int c
)
175 _DIAGASSERT(ei
!= NULL
);
177 return (ei
->cell
[c
& 0xFF] & 0x2) ? 1 : 0;
181 _citrus_BIG5_check_excludes(_BIG5EncodingInfo
*ei
, wint_t c
)
183 _BIG5Exclude
*exclude
;
185 _DIAGASSERT(ei
!= NULL
);
187 TAILQ_FOREACH(exclude
, &ei
->excludes
, entry
) {
188 if (c
>= exclude
->start
&& c
<= exclude
->end
)
195 _citrus_BIG5_fill_rowcol(void * __restrict ctx
, const char * __restrict s
,
196 uint64_t start
, uint64_t end
)
198 _BIG5EncodingInfo
*ei
;
202 _DIAGASSERT(ctx
!= NULL
);
204 if (start
> 0xFF || end
> 0xFF)
206 ei
= (_BIG5EncodingInfo
*)ctx
;
207 i
= strcmp("row", s
) ? 1 : 0;
209 for (n
= start
; n
<= end
; ++n
)
210 ei
->cell
[n
& 0xFF] |= i
;
216 _citrus_BIG5_fill_excludes(void * __restrict ctx
, const char * __restrict s
,
217 uint64_t start
, uint64_t end
)
219 _BIG5EncodingInfo
*ei
;
220 _BIG5Exclude
*exclude
;
222 _DIAGASSERT(ctx
!= NULL
);
224 if (start
> 0xFFFF || end
> 0xFFFF)
226 ei
= (_BIG5EncodingInfo
*)ctx
;
227 exclude
= TAILQ_LAST(&ei
->excludes
, _BIG5ExcludeList
);
228 if (exclude
!= NULL
&& (wint_t)start
<= exclude
->end
)
230 exclude
= (void *)malloc(sizeof(*exclude
));
233 exclude
->start
= (wint_t)start
;
234 exclude
->end
= (wint_t)end
;
235 TAILQ_INSERT_TAIL(&ei
->excludes
, exclude
, entry
);
240 static const _citrus_prop_hint_t root_hints
[] = {
241 _CITRUS_PROP_HINT_NUM("row", &_citrus_BIG5_fill_rowcol
),
242 _CITRUS_PROP_HINT_NUM("col", &_citrus_BIG5_fill_rowcol
),
243 _CITRUS_PROP_HINT_NUM("excludes", &_citrus_BIG5_fill_excludes
),
244 _CITRUS_PROP_HINT_END
249 _citrus_BIG5_encoding_module_uninit(_BIG5EncodingInfo
*ei
)
251 _BIG5Exclude
*exclude
;
253 _DIAGASSERT(ei
!= NULL
);
255 while ((exclude
= TAILQ_FIRST(&ei
->excludes
)) != NULL
) {
256 TAILQ_REMOVE(&ei
->excludes
, exclude
, entry
);
263 _citrus_BIG5_encoding_module_init(_BIG5EncodingInfo
* __restrict ei
,
264 const void * __restrict var
, size_t lenvar
)
269 _DIAGASSERT(ei
!= NULL
);
271 memset((void *)ei
, 0, sizeof(*ei
));
272 TAILQ_INIT(&ei
->excludes
);
274 if (lenvar
> 0 && var
!= NULL
) {
275 s
= _bcs_skip_ws_len((const char *)var
, &lenvar
);
276 if (lenvar
> 0 && *s
!= '\0') {
277 err
= _citrus_prop_parse_variable(
278 root_hints
, (void *)ei
, s
, lenvar
);
282 _citrus_BIG5_encoding_module_uninit(ei
);
283 memset((void *)ei
, 0, sizeof(*ei
));
284 TAILQ_INIT(&ei
->excludes
);
288 /* fallback Big5-1984, for backward compatibility. */
289 _citrus_BIG5_fill_rowcol(ei
, "row", 0xA1, 0xFE);
290 _citrus_BIG5_fill_rowcol(ei
, "col", 0x40, 0x7E);
291 _citrus_BIG5_fill_rowcol(ei
, "col", 0xA1, 0xFE);
298 _citrus_BIG5_mbrtowc_priv(_BIG5EncodingInfo
* __restrict ei
,
299 wchar_t * __restrict pwc
,
300 const char ** __restrict s
, size_t n
,
301 _BIG5State
* __restrict psenc
,
302 size_t * __restrict nresult
)
309 _DIAGASSERT(nresult
!= 0);
310 _DIAGASSERT(ei
!= NULL
);
311 _DIAGASSERT(psenc
!= NULL
);
312 _DIAGASSERT(s
!= NULL
&& *s
!= NULL
);
317 _citrus_BIG5_init_state(ei
, psenc
);
322 chlenbak
= psenc
->chlen
;
324 /* make sure we have the first byte in the buffer */
325 switch (psenc
->chlen
) {
329 psenc
->ch
[0] = *s0
++;
340 c
= _citrus_BIG5_check(ei
, psenc
->ch
[0] & 0xff);
343 while (psenc
->chlen
< c
) {
347 psenc
->ch
[psenc
->chlen
] = *s0
++;
354 wchar
= psenc
->ch
[0] & 0xff;
357 if (!_citrus_BIG5_check2(ei
, psenc
->ch
[1] & 0xff))
359 wchar
= ((psenc
->ch
[0] & 0xff) << 8) | (psenc
->ch
[1] & 0xff);
366 if (_citrus_BIG5_check_excludes(ei
, (wint_t)wchar
) != 0)
376 *nresult
= c
- chlenbak
;
382 *nresult
= (size_t)-1;
387 *nresult
= (size_t)-2;
393 _citrus_BIG5_wcrtomb_priv(_BIG5EncodingInfo
* __restrict ei
,
395 size_t n
, wchar_t wc
, _BIG5State
* __restrict psenc
,
396 size_t * __restrict nresult
)
400 _DIAGASSERT(ei
!= NULL
);
401 _DIAGASSERT(nresult
!= 0);
402 _DIAGASSERT(s
!= NULL
);
404 /* check invalid sequence */
406 _citrus_BIG5_check_excludes(ei
, (wint_t)wc
) != 0) {
412 if (_citrus_BIG5_check(ei
, (wc
>> 8) & 0xff) != 2 ||
413 !_citrus_BIG5_check2(ei
, wc
& 0xff)) {
419 if (wc
& ~0xff || !_citrus_BIG5_check(ei
, wc
& 0xff)) {
427 /* bound check failure */
433 s
[0] = (wc
>> 8) & 0xff;
443 *nresult
= (size_t)-1;
449 _citrus_BIG5_stdenc_wctocs(_BIG5EncodingInfo
* __restrict ei
,
450 _csid_t
* __restrict csid
,
451 _index_t
* __restrict idx
, wchar_t wc
)
454 _DIAGASSERT(csid
!= NULL
&& idx
!= NULL
);
456 *csid
= (wc
< 0x100) ? 0 : 1;
464 _citrus_BIG5_stdenc_cstowc(_BIG5EncodingInfo
* __restrict ei
,
465 wchar_t * __restrict wc
,
466 _csid_t csid
, _index_t idx
)
468 _DIAGASSERT(wc
!= NULL
);
484 _citrus_BIG5_stdenc_get_state_desc_generic(_BIG5EncodingInfo
* __restrict ei
,
485 _BIG5State
* __restrict psenc
,
486 int * __restrict rstate
)
489 if (psenc
->chlen
== 0)
490 *rstate
= _STDENC_SDGEN_INITIAL
;
492 *rstate
= _STDENC_SDGEN_INCOMPLETE_CHAR
;
497 /* ----------------------------------------------------------------------
498 * public interface for ctype
501 _CITRUS_CTYPE_DECLS(BIG5
);
502 _CITRUS_CTYPE_DEF_OPS(BIG5
);
504 #include "citrus_ctype_template.h"
507 /* ----------------------------------------------------------------------
508 * public interface for stdenc
511 _CITRUS_STDENC_DECLS(BIG5
);
512 _CITRUS_STDENC_DEF_OPS(BIG5
);
514 #include "citrus_stdenc_template.h"