Sync Citrus iconv support with NetBSD.
[dragonfly.git] / lib / libc / citrus / modules / citrus_utf8.c
blob6ec4ab124e23026f45f38036033aa8ed98b2001a
1 /* $NetBSD: citrus_utf8.c,v 1.16 2007/03/06 16:13:58 tnozaki Exp $ */
2 /* $DragonFly: src/lib/libc/citrus/modules/citrus_utf8.c,v 1.2 2008/04/10 10:21:02 hasso Exp $ */
4 /*-
5 * Copyright (c)2002 Citrus Project,
6 * All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
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
27 * SUCH DAMAGE.
30 /*-
31 * Copyright (c) 1993
32 * The Regents of the University of California. All rights reserved.
34 * This code is derived from software contributed to Berkeley by
35 * Paul Borman at Krystal Technologies.
37 * Redistribution and use in source and binary forms, with or without
38 * modification, are permitted provided that the following conditions
39 * are met:
40 * 1. Redistributions of source code must retain the above copyright
41 * notice, this list of conditions and the following disclaimer.
42 * 2. Redistributions in binary form must reproduce the above copyright
43 * notice, this list of conditions and the following disclaimer in the
44 * documentation and/or other materials provided with the distribution.
45 * 3. Neither the name of the University nor the names of its contributors
46 * may be used to endorse or promote products derived from this software
47 * without specific prior written permission.
49 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
50 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
51 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
52 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
53 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
54 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
55 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
56 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
57 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
58 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
59 * SUCH DAMAGE.
62 #include <sys/types.h>
63 #include <assert.h>
64 #include <errno.h>
65 #include <limits.h>
66 #include <locale.h>
67 #include <stddef.h>
68 #include <stdio.h>
69 #include <stdlib.h>
70 #include <string.h>
71 #include <wchar.h>
73 #include "citrus_namespace.h"
74 #include "citrus_types.h"
75 #include "citrus_module.h"
76 #include "citrus_ctype.h"
77 #include "citrus_stdenc.h"
78 #include "citrus_utf8.h"
81 /* ----------------------------------------------------------------------
82 * private stuffs used by templates
85 static int _UTF8_count_array[256];
86 static int const *_UTF8_count = NULL;
88 static const u_int32_t _UTF8_range[] = {
89 0, /*dummy*/
90 0x00000000, 0x00000080, 0x00000800, 0x00010000,
91 0x00200000, 0x04000000, 0x80000000,
94 typedef struct {
95 char ch[6];
96 int chlen;
97 } _UTF8State;
99 typedef struct {
100 } _UTF8EncodingInfo;
102 typedef struct {
103 _UTF8EncodingInfo ei;
104 struct {
105 /* for future multi-locale facility */
106 _UTF8State s_mblen;
107 _UTF8State s_mbrlen;
108 _UTF8State s_mbrtowc;
109 _UTF8State s_mbtowc;
110 _UTF8State s_mbsrtowcs;
111 _UTF8State s_wcrtomb;
112 _UTF8State s_wcsrtombs;
113 _UTF8State s_wctomb;
114 } states;
115 } _UTF8CTypeInfo;
117 #define _CEI_TO_EI(_cei_) (&(_cei_)->ei)
118 #define _CEI_TO_STATE(_ei_, _func_) (_ei_)->states.s_##_func_
120 #define _FUNCNAME(m) _citrus_UTF8_##m
121 #define _ENCODING_INFO _UTF8EncodingInfo
122 #define _CTYPE_INFO _UTF8CTypeInfo
123 #define _ENCODING_STATE _UTF8State
124 #define _ENCODING_MB_CUR_MAX(_ei_) 6
125 #define _ENCODING_IS_STATE_DEPENDENT 0
126 #define _STATE_NEEDS_EXPLICIT_INIT(_ps_) 0
129 static __inline void
130 _UTF8_init_count(void)
132 int i;
133 if (!_UTF8_count) {
134 memset(_UTF8_count_array, 0, sizeof(_UTF8_count_array));
135 for (i = 0; i <= 0x7f; i++)
136 _UTF8_count_array[i] = 1;
137 for (i = 0xc0; i <= 0xdf; i++)
138 _UTF8_count_array[i] = 2;
139 for (i = 0xe0; i <= 0xef; i++)
140 _UTF8_count_array[i] = 3;
141 for (i = 0xf0; i <= 0xf7; i++)
142 _UTF8_count_array[i] = 4;
143 for (i = 0xf8; i <= 0xfb; i++)
144 _UTF8_count_array[i] = 5;
145 for (i = 0xfc; i <= 0xfd; i++)
146 _UTF8_count_array[i] = 6;
147 _UTF8_count = _UTF8_count_array;
151 static int
152 _UTF8_findlen(wchar_t v)
154 int i;
155 u_int32_t c;
157 c = (u_int32_t)v; /*XXX*/
158 for (i = 1; i < sizeof(_UTF8_range) / sizeof(_UTF8_range[0]) - 1; i++)
159 if (c >= _UTF8_range[i] && c < _UTF8_range[i + 1])
160 return i;
162 return -1; /*out of range*/
165 static __inline int
166 _UTF8_surrogate(wchar_t wc)
168 return wc >= 0xd800 && wc <= 0xdfff;
171 static __inline void
172 /*ARGSUSED*/
173 _citrus_UTF8_init_state(_UTF8EncodingInfo *ei, _UTF8State *s)
175 s->chlen = 0;
178 static __inline void
179 /*ARGSUSED*/
180 _citrus_UTF8_pack_state(_UTF8EncodingInfo *ei, void *pspriv,
181 const _UTF8State *s)
183 memcpy(pspriv, (const void *)s, sizeof(*s));
186 static __inline void
187 /*ARGSUSED*/
188 _citrus_UTF8_unpack_state(_UTF8EncodingInfo *ei, _UTF8State *s,
189 const void *pspriv)
191 memcpy((void *)s, pspriv, sizeof(*s));
194 static int
195 _citrus_UTF8_mbrtowc_priv(_UTF8EncodingInfo *ei, wchar_t *pwc, const char **s,
196 size_t n, _UTF8State *psenc, size_t *nresult)
198 wchar_t wchar;
199 const char *s0;
200 int c;
201 int i;
203 _DIAGASSERT(nresult != 0);
204 _DIAGASSERT(s != NULL);
205 _DIAGASSERT(psenc != NULL);
207 s0 = *s;
209 if (s0 == NULL) {
210 _citrus_UTF8_init_state(ei, psenc);
211 *nresult = 0; /* state independent */
212 return 0;
215 /* make sure we have the first byte in the buffer */
216 if (psenc->chlen == 0) {
217 if (n-- < 1)
218 goto restart;
219 psenc->ch[psenc->chlen++] = *s0++;
222 c = _UTF8_count[psenc->ch[0] & 0xff];
223 if (c < 1 || c < psenc->chlen)
224 goto ilseq;
226 if (c == 1)
227 wchar = psenc->ch[0] & 0xff;
228 else {
229 while (psenc->chlen < c) {
230 if (n-- < 1)
231 goto restart;
232 psenc->ch[psenc->chlen++] = *s0++;
234 wchar = psenc->ch[0] & (0x7f >> c);
235 for (i = 1; i < c; i++) {
236 if ((psenc->ch[i] & 0xc0) != 0x80)
237 goto ilseq;
238 wchar <<= 6;
239 wchar |= (psenc->ch[i] & 0x3f);
241 if (_UTF8_surrogate(wchar) || _UTF8_findlen(wchar) != c)
242 goto ilseq;
244 if (pwc != NULL)
245 *pwc = wchar;
246 *s = s0;
247 psenc->chlen = 0;
249 return 0;
251 ilseq:
252 *nresult = (size_t)-1;
253 return EILSEQ;
255 restart:
256 *s = s0;
257 *nresult = (size_t)-2;
258 return 0;
261 static int
262 _citrus_UTF8_wcrtomb_priv(_UTF8EncodingInfo *ei, char *s, size_t n, wchar_t wc,
263 _UTF8State *psenc, size_t *nresult)
265 int cnt, i, ret;
266 wchar_t c;
268 _DIAGASSERT(nresult != 0);
269 _DIAGASSERT(s != NULL);
271 if (_UTF8_surrogate(wc)) {
272 ret = EILSEQ;
273 goto err;
275 cnt = _UTF8_findlen(wc);
276 if (cnt <= 0 || cnt > 6) {
277 /* invalid UCS4 value */
278 ret = EILSEQ;
279 goto err;
281 if (n < cnt) {
282 /* bound check failure */
283 ret = E2BIG;
284 goto err;
287 c = wc;
288 if (s) {
289 for (i = cnt - 1; i > 0; i--) {
290 s[i] = 0x80 | (c & 0x3f);
291 c >>= 6;
293 s[0] = c;
294 if (cnt == 1)
295 s[0] &= 0x7f;
296 else {
297 s[0] &= (0x7f >> cnt);
298 s[0] |= ((0xff00 >> cnt) & 0xff);
302 *nresult = (size_t)cnt;
303 return 0;
305 err:
306 *nresult = (size_t)-1;
307 return ret;
310 static __inline int
311 /*ARGSUSED*/
312 _citrus_UTF8_stdenc_wctocs(_UTF8EncodingInfo * __restrict ei,
313 _csid_t * __restrict csid,
314 _index_t * __restrict idx,
315 wchar_t wc)
318 _DIAGASSERT(csid != NULL && idx != NULL);
320 *csid = 0;
321 *idx = (_citrus_index_t)wc;
323 return (0);
326 static __inline int
327 /*ARGSUSED*/
328 _citrus_UTF8_stdenc_cstowc(_UTF8EncodingInfo * __restrict ei,
329 wchar_t * __restrict wc,
330 _csid_t csid, _index_t idx)
333 _DIAGASSERT(wc != NULL);
335 if (csid != 0)
336 return (EILSEQ);
338 *wc = (wchar_t)idx;
340 return (0);
343 static __inline int
344 /*ARGSUSED*/
345 _citrus_UTF8_stdenc_get_state_desc_generic(_UTF8EncodingInfo * __restrict ei,
346 _UTF8State * __restrict psenc,
347 int * __restrict rstate)
350 if (psenc->chlen == 0)
351 *rstate = _STDENC_SDGEN_INITIAL;
352 else
353 *rstate = _STDENC_SDGEN_INCOMPLETE_CHAR;
355 return 0;
358 static int
359 /*ARGSUSED*/
360 _citrus_UTF8_encoding_module_init(_UTF8EncodingInfo * __restrict ei,
361 const void * __restrict var, size_t lenvar)
363 _UTF8_init_count();
365 return 0;
368 static void
369 /*ARGSUSED*/
370 _citrus_UTF8_encoding_module_uninit(_UTF8EncodingInfo *ei)
375 /* ----------------------------------------------------------------------
376 * public interface for ctype
379 _CITRUS_CTYPE_DECLS(UTF8);
380 _CITRUS_CTYPE_DEF_OPS(UTF8);
382 #include "citrus_ctype_template.h"
384 /* ----------------------------------------------------------------------
385 * public interface for stdenc
388 _CITRUS_STDENC_DECLS(UTF8);
389 _CITRUS_STDENC_DEF_OPS(UTF8);
391 #include "citrus_stdenc_template.h"