1 /* $NetBSD: citrus_euctw.c,v 1.12 2013/05/28 16:57:56 joerg Exp $ */
4 * Copyright (c)2002 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
30 * Copyright (c)1999 Citrus Project,
31 * All rights reserved.
33 * Redistribution and use in source and binary forms, with or without
34 * modification, are permitted provided that the following conditions
36 * 1. Redistributions of source code must retain the above copyright
37 * notice, this list of conditions and the following disclaimer.
38 * 2. Redistributions in binary form must reproduce the above copyright
39 * notice, this list of conditions and the following disclaimer in the
40 * documentation and/or other materials provided with the distribution.
42 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
43 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
44 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
45 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
46 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
47 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
48 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
49 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
50 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
51 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
54 * $Citrus: xpg4dl/FreeBSD/lib/libc/locale/euctw.c,v 1.13 2001/06/21 01:51:44 yamt Exp $
57 #include <sys/cdefs.h>
58 #if defined(LIBC_SCCS) && !defined(lint)
59 __RCSID("$NetBSD: citrus_euctw.c,v 1.12 2013/05/28 16:57:56 joerg Exp $");
60 #endif /* LIBC_SCCS and not lint */
69 #include <sys/types.h>
72 #include "citrus_namespace.h"
73 #include "citrus_types.h"
74 #include "citrus_module.h"
75 #include "citrus_ctype.h"
76 #include "citrus_stdenc.h"
77 #include "citrus_euctw.h"
80 /* ----------------------------------------------------------------------
81 * private stuffs used by templates
93 _EUCTWEncodingInfo ei
;
95 /* for future multi-locale facility */
98 _EUCTWState s_mbrtowc
;
100 _EUCTWState s_mbsrtowcs
;
101 _EUCTWState s_mbsnrtowcs
;
102 _EUCTWState s_wcrtomb
;
103 _EUCTWState s_wcsrtombs
;
104 _EUCTWState s_wcsnrtombs
;
105 _EUCTWState s_wctomb
;
112 #define _CEI_TO_EI(_cei_) (&(_cei_)->ei)
113 #define _CEI_TO_STATE(_cei_, _func_) (_cei_)->states.s_##_func_
115 #define _FUNCNAME(m) _citrus_EUCTW_##m
116 #define _ENCODING_INFO _EUCTWEncodingInfo
117 #define _CTYPE_INFO _EUCTWCTypeInfo
118 #define _ENCODING_STATE _EUCTWState
119 #define _ENCODING_MB_CUR_MAX(_ei_) 4
120 #define _ENCODING_IS_STATE_DEPENDENT 0
121 #define _STATE_NEEDS_EXPLICIT_INIT(_ps_) 0
124 _citrus_EUCTW_cs(u_int c
)
128 return ((c
& 0x80) ? (c
== _SS2
? 2 : 1) : 0);
132 _citrus_EUCTW_count(int cs
)
150 _citrus_EUCTW_init_state(_EUCTWEncodingInfo
* __restrict ei
,
151 _EUCTWState
* __restrict s
)
153 memset(s
, 0, sizeof(*s
));
158 _citrus_EUCTW_pack_state(_EUCTWEncodingInfo
* __restrict ei
,
159 void * __restrict pspriv
,
160 const _EUCTWState
* __restrict s
)
162 memcpy(pspriv
, (const void *)s
, sizeof(*s
));
167 _citrus_EUCTW_unpack_state(_EUCTWEncodingInfo
* __restrict ei
,
168 _EUCTWState
* __restrict s
,
169 const void * __restrict pspriv
)
171 memcpy((void *)s
, pspriv
, sizeof(*s
));
176 _citrus_EUCTW_encoding_module_init(_EUCTWEncodingInfo
* __restrict ei
,
177 const void * __restrict var
, size_t lenvar
)
180 _DIAGASSERT(ei
!= NULL
);
182 memset((void *)ei
, 0, sizeof(*ei
));
189 _citrus_EUCTW_encoding_module_uninit(_EUCTWEncodingInfo
*ei
)
194 _citrus_EUCTW_mbrtowc_priv(_EUCTWEncodingInfo
* __restrict ei
,
195 wchar_t * __restrict pwc
,
196 const char ** __restrict s
,
197 size_t n
, _EUCTWState
* __restrict psenc
,
198 size_t * __restrict nresult
)
205 _DIAGASSERT(nresult
!= 0);
206 _DIAGASSERT(ei
!= NULL
);
207 _DIAGASSERT(psenc
!= NULL
);
208 _DIAGASSERT(s
!= NULL
);
213 _citrus_EUCTW_init_state(ei
, psenc
);
214 *nresult
= 0; /* state independent */
218 chlenbak
= psenc
->chlen
;
220 /* make sure we have the first byte in the buffer */
221 switch (psenc
->chlen
) {
225 psenc
->ch
[0] = *s0
++;
237 c
= _citrus_EUCTW_count(cs
= _citrus_EUCTW_cs(psenc
->ch
[0] & 0xff));
240 while (psenc
->chlen
< c
) {
243 psenc
->ch
[psenc
->chlen
] = *s0
++;
251 if (psenc
->ch
[0] & 0x80)
253 wchar
= psenc
->ch
[0] & 0xff;
256 if (!(psenc
->ch
[0] & 0x80) || !(psenc
->ch
[1] & 0x80))
258 wchar
= ((psenc
->ch
[0] & 0xff) << 8) | (psenc
->ch
[1] & 0xff);
262 if ((u_char
)psenc
->ch
[1] < 0xa1 || 0xa7 < (u_char
)psenc
->ch
[1])
264 if (!(psenc
->ch
[2] & 0x80) || !(psenc
->ch
[3] & 0x80))
266 wchar
= ((psenc
->ch
[2] & 0xff) << 8) | (psenc
->ch
[3] & 0xff);
267 wchar
|= ('G' + psenc
->ch
[1] - 0xa1) << 24;
282 *nresult
= c
- chlenbak
;
288 *nresult
= (size_t)-1;
293 *nresult
= (size_t)-1;
298 _citrus_EUCTW_wcrtomb_priv(_EUCTWEncodingInfo
* __restrict ei
,
299 char * __restrict s
, size_t n
, wchar_t wc
,
300 _EUCTWState
* __restrict psenc
,
301 size_t * __restrict nresult
)
303 wchar_t cs
= wc
& 0x7f000080;
305 int i
, len
, clen
, ret
;
307 _DIAGASSERT(ei
!= NULL
);
308 _DIAGASSERT(nresult
!= 0);
309 _DIAGASSERT(s
!= NULL
);
314 if ((wc
& 0x007f0000) && !(wc
& 0x00800000))
317 if (clen
== 1 && cs
== 0x00000000) {
325 } else if (clen
== 2 && cs
== ('G' << 24)) {
334 } else if (clen
== 2 && 'H' <= (cs
>> 24) && (cs
>> 24) <= 'M') {
335 /* CNS-11643-[2-7] */
342 *s
++ = (cs
>> 24) - 'H' + 0xa2;
352 *s
++ = (v
>> (i
<< 3)) & 0xff;
358 *nresult
= (size_t)-1;
364 _citrus_EUCTW_stdenc_wctocs(_EUCTWEncodingInfo
* __restrict ei
,
365 _csid_t
* __restrict csid
,
366 _index_t
* __restrict idx
, wchar_t wc
)
369 _DIAGASSERT(ei
!= NULL
&& csid
!= NULL
&& idx
!= NULL
);
371 *csid
= (_csid_t
)(wc
>> 24) & 0xFF;
372 *idx
= (_index_t
)(wc
& 0x7F7F);
379 _citrus_EUCTW_stdenc_cstowc(_EUCTWEncodingInfo
* __restrict ei
,
380 wchar_t * __restrict wc
,
381 _csid_t csid
, _index_t idx
)
384 _DIAGASSERT(ei
!= NULL
&& wc
!= NULL
);
387 if ((idx
& ~0x7F) != 0)
391 if (csid
< 'G' || csid
> 'M' || (idx
& ~0x7F7F) != 0)
393 *wc
= (wchar_t)idx
| ((wchar_t)csid
<<24);
401 _citrus_EUCTW_stdenc_get_state_desc_generic(_EUCTWEncodingInfo
* __restrict ei
,
402 _EUCTWState
* __restrict psenc
,
403 int * __restrict rstate
)
406 if (psenc
->chlen
== 0)
407 *rstate
= _STDENC_SDGEN_INITIAL
;
409 *rstate
= _STDENC_SDGEN_INCOMPLETE_CHAR
;
414 /* ----------------------------------------------------------------------
415 * public interface for ctype
418 _CITRUS_CTYPE_DECLS(EUCTW
);
419 _CITRUS_CTYPE_DEF_OPS(EUCTW
);
421 #include "citrus_ctype_template.h"
423 /* ----------------------------------------------------------------------
424 * public interface for stdenc
427 _CITRUS_STDENC_DECLS(EUCTW
);
428 _CITRUS_STDENC_DEF_OPS(EUCTW
);
430 #include "citrus_stdenc_template.h"