1 /* $NetBSD: citrus_euc.c,v 1.12.6.1 2009/01/04 17:02:19 christos 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
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_euc.c,v 1.12.6.1 2009/01/04 17:02:19 christos Exp $");
64 #endif /* LIBC_SCCS and not lint */
73 #include <sys/types.h>
76 #include "citrus_namespace.h"
77 #include "citrus_bcs.h"
78 #include "citrus_types.h"
79 #include "citrus_module.h"
80 #include "citrus_ctype.h"
81 #include "citrus_stdenc.h"
82 #include "citrus_euc.h"
85 /* ----------------------------------------------------------------------
86 * private stuffs used by templates
104 /* for future multi-locale facility */
109 _EUCState s_mbsrtowcs
;
111 _EUCState s_wcsrtombs
;
119 #define _CEI_TO_EI(_cei_) (&(_cei_)->ei)
120 #define _CEI_TO_STATE(_cei_, _func_) (_cei_)->states.s_##_func_
122 #define _FUNCNAME(m) _citrus_EUC_##m
123 #define _ENCODING_INFO _EUCEncodingInfo
124 #define _CTYPE_INFO _EUCCTypeInfo
125 #define _ENCODING_STATE _EUCState
126 #define _ENCODING_MB_CUR_MAX(_ei_) (_ei_)->mb_cur_max
127 #define _ENCODING_IS_STATE_DEPENDENT 0
128 #define _STATE_NEEDS_EXPLICIT_INIT(_ps_) 0
132 _citrus_EUC_cs(unsigned int c
)
136 return ((c
& 0x80) ? c
== _SS3
? 3 : c
== _SS2
? 2 : 1 : 0);
140 _citrus_EUC_parse_variable(_EUCEncodingInfo
*ei
,
141 const void *var
, size_t lenvar
)
146 /* parse variable string */
150 v
= (const char *) var
;
152 while (*v
== ' ' || *v
== '\t')
156 for (x
= 0; x
< 4; ++x
) {
157 ei
->count
[x
] = (int)_bcs_strtol(v
, (char **)&e
, 0);
158 if (v
== e
|| !(v
= e
) || ei
->count
[x
]<1 || ei
->count
[x
]>4) {
161 if (ei
->mb_cur_max
< ei
->count
[x
])
162 ei
->mb_cur_max
= ei
->count
[x
];
163 while (*v
== ' ' || *v
== '\t')
165 ei
->bits
[x
] = (int)_bcs_strtol(v
, (char **)&e
, 0);
166 if (v
== e
|| !(v
= e
)) {
169 while (*v
== ' ' || *v
== '\t')
172 ei
->mask
= (int)_bcs_strtol(v
, (char **)&e
, 0);
173 if (v
== e
|| !(v
= e
)) {
183 _citrus_EUC_init_state(_EUCEncodingInfo
*ei
, _EUCState
*s
)
185 memset(s
, 0, sizeof(*s
));
190 _citrus_EUC_pack_state(_EUCEncodingInfo
*ei
, void *pspriv
, const _EUCState
*s
)
192 memcpy(pspriv
, (const void *)s
, sizeof(*s
));
197 _citrus_EUC_unpack_state(_EUCEncodingInfo
*ei
, _EUCState
*s
,
200 memcpy((void *)s
, pspriv
, sizeof(*s
));
204 _citrus_EUC_mbrtowc_priv(_EUCEncodingInfo
*ei
, wchar_t *pwc
, const char **s
,
205 size_t n
, _EUCState
*psenc
, size_t *nresult
)
210 const char *s0
, *s1
= NULL
;
212 _DIAGASSERT(nresult
!= 0);
213 _DIAGASSERT(ei
!= NULL
);
214 _DIAGASSERT(psenc
!= NULL
);
215 _DIAGASSERT(s
!= NULL
);
220 _citrus_EUC_init_state(ei
, psenc
);
221 *nresult
= 0; /* state independent */
225 chlenbak
= psenc
->chlen
;
227 /* make sure we have the first byte in the buffer */
228 switch (psenc
->chlen
) {
232 psenc
->ch
[0] = *s0
++;
244 c
= ei
->count
[cs
= _citrus_EUC_cs(psenc
->ch
[0] & 0xff)];
247 while (psenc
->chlen
< c
) {
250 psenc
->ch
[psenc
->chlen
] = *s0
++;
273 wchar
= (wchar
<< 8) | (*s1
++ & 0xff);
274 wchar
= (wchar
& ~ei
->mask
) | ei
->bits
[cs
];
283 *nresult
= (size_t)(c
- chlenbak
);
290 *nresult
= (size_t)-1;
294 *nresult
= (size_t)-2;
300 _citrus_EUC_wcrtomb_priv(_EUCEncodingInfo
*ei
, char *s
, size_t n
, wchar_t wc
,
301 _EUCState
*psenc
, size_t *nresult
)
306 _DIAGASSERT(ei
!= NULL
);
307 _DIAGASSERT(nresult
!= 0);
308 _DIAGASSERT(s
!= NULL
);
314 cs
< sizeof(ei
->count
)/sizeof(ei
->count
[0]);
316 if (m
== ei
->bits
[cs
])
319 /* fallback case - not sure if it is necessary */
320 if (cs
== sizeof(ei
->count
)/sizeof(ei
->count
[0]))
328 m
= (cs
) ? 0x80 : 0x00;
341 *s
++ = ((nm
>> (i
<< 3)) & 0xff) | m
;
343 *nresult
= (size_t)ei
->count
[cs
];
347 *nresult
= (size_t)-1;
353 _citrus_EUC_stdenc_wctocs(_EUCEncodingInfo
* __restrict ei
,
354 _csid_t
* __restrict csid
,
355 _index_t
* __restrict idx
, wchar_t wc
)
359 _DIAGASSERT(ei
!= NULL
&& csid
!= NULL
&& idx
!= NULL
);
364 *csid
= (_citrus_csid_t
)m
;
365 *idx
= (_citrus_index_t
)nm
;
372 _citrus_EUC_stdenc_cstowc(_EUCEncodingInfo
* __restrict ei
,
373 wchar_t * __restrict wc
,
374 _csid_t csid
, _index_t idx
)
377 _DIAGASSERT(ei
!= NULL
&& wc
!= NULL
);
379 if ((csid
& ~ei
->mask
) != 0 || (idx
& ei
->mask
) != 0)
382 *wc
= (wchar_t)csid
| (wchar_t)idx
;
389 _citrus_EUC_stdenc_get_state_desc_generic(_EUCEncodingInfo
* __restrict ei
,
390 _EUCState
* __restrict psenc
,
391 int * __restrict rstate
)
394 if (psenc
->chlen
== 0)
395 *rstate
= _STDENC_SDGEN_INITIAL
;
397 *rstate
= _STDENC_SDGEN_INCOMPLETE_CHAR
;
404 _citrus_EUC_encoding_module_init(_EUCEncodingInfo
* __restrict ei
,
405 const void * __restrict var
, size_t lenvar
)
408 _DIAGASSERT(ei
!= NULL
);
410 return (_citrus_EUC_parse_variable(ei
, var
, lenvar
));
415 _citrus_EUC_encoding_module_uninit(_EUCEncodingInfo
* __restrict ei
)
419 /* ----------------------------------------------------------------------
420 * public interface for ctype
423 _CITRUS_CTYPE_DECLS(EUC
);
424 _CITRUS_CTYPE_DEF_OPS(EUC
);
426 #include "citrus_ctype_template.h"
428 /* ----------------------------------------------------------------------
429 * public interface for stdenc
432 _CITRUS_STDENC_DECLS(EUC
);
433 _CITRUS_STDENC_DEF_OPS(EUC
);
435 #include "citrus_stdenc_template.h"