kernel: scheduling fix for ARM
[minix.git] / lib / libc / citrus / modules / citrus_viqr.c
blob5d340a13028d32160467d3fa37d8871468d3f02d
1 /* $NetBSD: citrus_viqr.c,v 1.5 2011/11/19 18:20:13 tnozaki Exp $ */
3 /*-
4 * Copyright (c)2006 Citrus Project,
5 * All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
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
26 * SUCH DAMAGE.
30 #include <sys/cdefs.h>
31 #if defined(LIBC_SCCS) && !defined(lint)
32 __RCSID("$NetBSD: citrus_viqr.c,v 1.5 2011/11/19 18:20:13 tnozaki Exp $");
33 #endif /* LIBC_SCCS and not lint */
35 #include <sys/queue.h>
36 #include <sys/types.h>
37 #include <assert.h>
38 #include <errno.h>
39 #include <string.h>
40 #include <stdint.h>
41 #include <stdlib.h>
42 #include <stddef.h>
43 #include <wchar.h>
44 #include <limits.h>
46 #include "citrus_namespace.h"
47 #include "citrus_types.h"
48 #include "citrus_bcs.h"
49 #include "citrus_module.h"
50 #include "citrus_ctype.h"
51 #include "citrus_stdenc.h"
52 #include "citrus_viqr.h"
54 #define ESCAPE '\\'
57 * this table generated from RFC 1456.
59 static const char *mnemonic_rfc1456[0x100] = {
60 NULL , NULL , "A(?", NULL , NULL , "A(~", "A^~", NULL ,
61 NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL ,
62 NULL , NULL , NULL , NULL , "Y?" , NULL , NULL , NULL ,
63 NULL , "Y~" , NULL , NULL , NULL , NULL , "Y." , NULL ,
64 NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL ,
65 NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL ,
66 NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL ,
67 NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL ,
68 NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL ,
69 NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL ,
70 NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL ,
71 NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL ,
72 NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL ,
73 NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL ,
74 NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL ,
75 NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL ,
76 "A." , "A('", "A(`", "A(.", "A^'", "A^`", "A^?", "A^.",
77 "E~" , "E." , "E^'", "E^`", "E^?", "E^~", "E^.", "O^'",
78 "O^`", "O^?", "O^~", "O^.", "O+.", "O+'", "O+`", "O+?",
79 "I." , "O?" , "O." , "I?" , "U?" , "U~" , "U." , "Y`" ,
80 "O~" , "a('", "a(`", "a(.", "a^'", "a^`", "a^?", "a^.",
81 "e~" , "e." , "e^'", "e^`", "e^?", "e^~", "e^.", "o^'",
82 "o^`", "o^?", "o^~", "O+~", "O+" , "o^.", "o+`", "o+?",
83 "i." , "U+.", "U+'", "U+`", "U+?", "o+" , "o+'", "U+" ,
84 "A`" , "A'" , "A^" , "A~" , "A?" , "A(" , "a(?", "a(~",
85 "E`" , "E'" , "E^" , "E?" , "I`" , "I'" , "I~" , "y`" ,
86 "DD" , "u+'", "O`" , "O'" , "O^" , "a." , "y?" , "u+`",
87 "u+?", "U`" , "U'" , "y~" , "y." , "Y'" , "o+~", "u+" ,
88 "a`" , "a'" , "a^" , "a~" , "a?" , "a(" , "u+~", "a^~",
89 "e`" , "e'" , "e^" , "e?" , "i`" , "i'" , "i~" , "i?" ,
90 "dd" , "u+.", "o`" , "o'" , "o^" , "o~" , "o?" , "o." ,
91 "u." , "u`" , "u'" , "u~" , "u?" , "y'" , "o+.", "U+~",
94 typedef struct {
95 const char *name;
96 wchar_t value;
97 } mnemonic_def_t;
99 static const mnemonic_def_t mnemonic_ext[] = {
100 /* add extra mnemonic here (should be sorted by wchar_t order). */
102 static const size_t mnemonic_ext_size =
103 sizeof(mnemonic_ext) / sizeof(mnemonic_def_t);
105 static const char *
106 mnemonic_ext_find(wchar_t wc, const mnemonic_def_t *head, size_t n)
108 const mnemonic_def_t *mid;
110 _DIAGASSERT(head != NULL);
112 for (; n > 0; n >>= 1) {
113 mid = head + (n >> 1);
114 if (mid->value == wc) {
115 return mid->name;
116 } else if (mid->value < wc) {
117 head = mid + 1;
118 --n;
121 return NULL;
124 struct mnemonic_t;
125 typedef TAILQ_HEAD(mnemonic_list_t, mnemonic_t) mnemonic_list_t;
126 typedef struct mnemonic_t {
127 TAILQ_ENTRY(mnemonic_t) entry;
128 int ascii;
129 struct mnemonic_t *parent;
130 mnemonic_list_t child;
131 wchar_t value;
132 } mnemonic_t;
134 static mnemonic_t *
135 mnemonic_list_find(mnemonic_list_t *ml, int ch)
137 mnemonic_t *m;
139 _DIAGASSERT(ml != NULL);
141 TAILQ_FOREACH(m, ml, entry) {
142 if (m->ascii == ch)
143 return m;
146 return NULL;
149 static mnemonic_t *
150 mnemonic_create(mnemonic_t *parent, int ascii, wchar_t value)
152 mnemonic_t *m;
154 _DIAGASSERT(parent != NULL);
156 m = malloc(sizeof(*m));
157 if (m != NULL) {
158 m->parent = parent;
159 m->ascii = ascii;
160 m->value = value;
161 TAILQ_INIT(&m->child);
164 return m;
167 static int
168 mnemonic_append_child(mnemonic_t *m, const char *s,
169 wchar_t value, wchar_t invalid)
171 int ch;
172 mnemonic_t *m0;
174 _DIAGASSERT(m != NULL);
175 _DIAGASSERT(s != NULL);
177 ch = (unsigned char)*s++;
178 if (ch == '\0')
179 return EINVAL;
180 m0 = mnemonic_list_find(&m->child, ch);
181 if (m0 == NULL) {
182 m0 = mnemonic_create(m, ch, (wchar_t)ch);
183 if (m0 == NULL)
184 return ENOMEM;
185 TAILQ_INSERT_TAIL(&m->child, m0, entry);
187 m = m0;
188 for (m0 = NULL; (ch = (unsigned char)*s) != '\0'; ++s) {
189 m0 = mnemonic_list_find(&m->child, ch);
190 if (m0 == NULL) {
191 m0 = mnemonic_create(m, ch, invalid);
192 if (m0 == NULL)
193 return ENOMEM;
194 TAILQ_INSERT_TAIL(&m->child, m0, entry);
196 m = m0;
198 if (m0 == NULL)
199 return EINVAL;
200 m0->value = value;
202 return 0;
205 static void
206 mnemonic_destroy(mnemonic_t *m)
208 mnemonic_t *m0;
210 _DIAGASSERT(m != NULL);
212 TAILQ_FOREACH(m0, &m->child, entry)
213 mnemonic_destroy(m0);
214 free(m);
217 typedef struct {
218 size_t mb_cur_max;
219 wchar_t invalid;
220 mnemonic_t *mroot;
221 } _VIQREncodingInfo;
223 typedef struct {
224 int chlen;
225 char ch[MB_LEN_MAX];
226 } _VIQRState;
228 typedef struct {
229 _VIQREncodingInfo ei;
230 struct {
231 /* for future multi-locale facility */
232 _VIQRState s_mblen;
233 _VIQRState s_mbrlen;
234 _VIQRState s_mbrtowc;
235 _VIQRState s_mbtowc;
236 _VIQRState s_mbsrtowcs;
237 _VIQRState s_wcrtomb;
238 _VIQRState s_wcsrtombs;
239 _VIQRState s_wctomb;
240 } states;
241 } _VIQRCTypeInfo;
243 #define _CEI_TO_EI(_cei_) (&(_cei_)->ei)
244 #define _CEI_TO_STATE(_cei_, _func_) (_cei_)->states.s_##_func_
246 #define _FUNCNAME(m) _citrus_VIQR_##m
247 #define _ENCODING_INFO _VIQREncodingInfo
248 #define _CTYPE_INFO _VIQRCTypeInfo
249 #define _ENCODING_STATE _VIQRState
250 #define _ENCODING_MB_CUR_MAX(_ei_) (_ei_)->mb_cur_max
251 #define _ENCODING_IS_STATE_DEPENDENT 1
252 #define _STATE_NEEDS_EXPLICIT_INIT(_ps_) 0
254 static __inline void
255 /*ARGSUSED*/
256 _citrus_VIQR_init_state(_VIQREncodingInfo * __restrict ei,
257 _VIQRState * __restrict psenc)
259 /* ei may be unused */
260 _DIAGASSERT(psenc != NULL);
262 psenc->chlen = 0;
265 static __inline void
266 /*ARGSUSED*/
267 _citrus_VIQR_pack_state(_VIQREncodingInfo * __restrict ei,
268 void *__restrict pspriv, const _VIQRState * __restrict psenc)
270 /* ei may be unused */
271 _DIAGASSERT(pspriv != NULL);
272 _DIAGASSERT(psenc != NULL);
274 memcpy(pspriv, (const void *)psenc, sizeof(*psenc));
277 static __inline void
278 /*ARGSUSED*/
279 _citrus_VIQR_unpack_state(_VIQREncodingInfo * __restrict ei,
280 _VIQRState * __restrict psenc, const void * __restrict pspriv)
282 /* ei may be unused */
283 _DIAGASSERT(psenc != NULL);
284 _DIAGASSERT(pspriv != NULL);
286 memcpy((void *)psenc, pspriv, sizeof(*psenc));
289 static int
290 _citrus_VIQR_mbrtowc_priv(_VIQREncodingInfo * __restrict ei,
291 wchar_t * __restrict pwc, const char ** __restrict s, size_t n,
292 _VIQRState * __restrict psenc, size_t * __restrict nresult)
294 const char *s0;
295 wchar_t wc;
296 mnemonic_t *m, *m0;
297 size_t i;
298 int ch, escape;
300 _DIAGASSERT(ei != NULL);
301 /* pwc may be null */
302 _DIAGASSERT(s != NULL);
303 _DIAGASSERT(psenc != NULL);
304 _DIAGASSERT(nresult != NULL);
306 if (*s == NULL) {
307 _citrus_VIQR_init_state(ei, psenc);
308 *nresult = (size_t)_ENCODING_IS_STATE_DEPENDENT;
309 return 0;
311 s0 = *s;
313 i = 0;
314 m = ei->mroot;
315 for (escape = 0;;) {
316 if (psenc->chlen == i) {
317 if (n-- < 1) {
318 *s = s0;
319 *nresult = (size_t)-2;
320 return 0;
322 psenc->ch[psenc->chlen++] = *s0++;
324 ch = (unsigned char)psenc->ch[i++];
325 if (ch == ESCAPE) {
326 if (m != ei->mroot)
327 break;
328 escape = 1;
329 continue;
331 if (escape != 0)
332 break;
333 m0 = mnemonic_list_find(&m->child, ch);
334 if (m0 == NULL)
335 break;
336 m = m0;
338 while (m != ei->mroot) {
339 --i;
340 if (m->value != ei->invalid)
341 break;
342 m = m->parent;
344 if (ch == ESCAPE && m != ei->mroot)
345 ++i;
346 psenc->chlen -= i;
347 memmove(&psenc->ch[0], &psenc->ch[i], psenc->chlen);
348 wc = (m == ei->mroot) ? (wchar_t)ch : m->value;
349 if (pwc != NULL)
350 *pwc = wc;
351 *nresult = (size_t)(wc == 0 ? 0 : s0 - *s);
352 *s = s0;
354 return 0;
357 static int
358 _citrus_VIQR_wcrtomb_priv(_VIQREncodingInfo * __restrict ei,
359 char * __restrict s, size_t n, wchar_t wc,
360 _VIQRState * __restrict psenc, size_t * __restrict nresult)
362 mnemonic_t *m;
363 int ch;
364 const char *p;
366 _DIAGASSERT(ei != NULL);
367 _DIAGASSERT(s != NULL);
368 _DIAGASSERT(psenc != NULL);
369 _DIAGASSERT(nresult != NULL);
371 switch (psenc->chlen) {
372 case 0: case 1:
373 break;
374 default:
375 return EINVAL;
377 m = NULL;
378 if ((uint32_t)wc <= 0xFF) {
379 p = mnemonic_rfc1456[wc & 0xFF];
380 if (p != NULL)
381 goto mnemonic_found;
382 if (n-- < 1)
383 goto e2big;
384 ch = (unsigned int)wc;
385 m = ei->mroot;
386 if (psenc->chlen > 0) {
387 m = mnemonic_list_find(&m->child, psenc->ch[0]);
388 if (m == NULL)
389 return EINVAL;
390 psenc->ch[0] = ESCAPE;
392 if (mnemonic_list_find(&m->child, ch) == NULL) {
393 psenc->chlen = 0;
394 m = NULL;
396 psenc->ch[psenc->chlen++] = ch;
397 } else {
398 p = mnemonic_ext_find(wc, &mnemonic_ext[0], mnemonic_ext_size);
399 if (p == NULL) {
400 *nresult = (size_t)-1;
401 return EILSEQ;
402 } else {
403 mnemonic_found:
404 psenc->chlen = 0;
405 while (*p != '\0') {
406 if (n-- < 1)
407 goto e2big;
408 psenc->ch[psenc->chlen++] = *p++;
412 memcpy(s, psenc->ch, psenc->chlen);
413 *nresult = psenc->chlen;
414 if (m == ei->mroot) {
415 psenc->ch[0] = ch;
416 psenc->chlen = 1;
417 } else {
418 psenc->chlen = 0;
421 return 0;
423 e2big:
424 *nresult = (size_t)-1;
425 return E2BIG;
428 static int
429 /* ARGSUSED */
430 _citrus_VIQR_put_state_reset(_VIQREncodingInfo * __restrict ei,
431 char * __restrict s, size_t n, _VIQRState * __restrict psenc,
432 size_t * __restrict nresult)
434 /* ei may be unused */
435 _DIAGASSERT(s != NULL);
436 _DIAGASSERT(psenc != NULL);
437 _DIAGASSERT(nresult != NULL);
439 switch (psenc->chlen) {
440 case 0: case 1:
441 break;
442 default:
443 return EINVAL;
445 *nresult = 0;
446 psenc->chlen = 0;
448 return 0;
451 static __inline int
452 /*ARGSUSED*/
453 _citrus_VIQR_stdenc_wctocs(_VIQREncodingInfo * __restrict ei,
454 _csid_t * __restrict csid, _index_t * __restrict idx, wchar_t wc)
456 /* ei may be unused */
457 _DIAGASSERT(csid != NULL);
458 _DIAGASSERT(idx != NULL);
460 *csid = 0;
461 *idx = (_index_t)wc;
463 return 0;
466 static __inline int
467 /*ARGSUSED*/
468 _citrus_VIQR_stdenc_cstowc(_VIQREncodingInfo * __restrict ei,
469 wchar_t * __restrict pwc, _csid_t csid, _index_t idx)
471 /* ei may be unused */
472 _DIAGASSERT(pwc != NULL);
474 if (csid != 0)
475 return EILSEQ;
476 *pwc = (wchar_t)idx;
478 return 0;
481 static void
482 _citrus_VIQR_encoding_module_uninit(_VIQREncodingInfo *ei)
484 _DIAGASSERT(ei != NULL);
486 mnemonic_destroy(ei->mroot);
489 static int
490 /*ARGSUSED*/
491 _citrus_VIQR_encoding_module_init(_VIQREncodingInfo * __restrict ei,
492 const void * __restrict var, size_t lenvar)
494 int errnum;
495 const char *s;
496 size_t i, n;
497 const mnemonic_def_t *p;
499 _DIAGASSERT(ei != NULL);
500 /* var may be unused */
502 ei->mb_cur_max = 1;
503 ei->invalid = (wchar_t)-1;
504 ei->mroot = mnemonic_create(NULL, '\0', ei->invalid);
505 if (ei->mroot == NULL)
506 return ENOMEM;
507 for (i = 0; i < sizeof(mnemonic_rfc1456) / sizeof(const char *); ++i) {
508 s = mnemonic_rfc1456[i];
509 if (s == NULL)
510 continue;
511 n = strlen(s);
512 _DIAGASSERT(n <= MB_LEN_MAX);
513 if (ei->mb_cur_max < n)
514 ei->mb_cur_max = n;
515 errnum = mnemonic_append_child(ei->mroot,
516 s, (wchar_t)i, ei->invalid);
517 if (errnum != 0) {
518 _citrus_VIQR_encoding_module_uninit(ei);
519 return errnum;
522 for (i = 0; i < mnemonic_ext_size; ++i) {
523 p = &mnemonic_ext[i];
524 _DIAGASSERT(p != NULL && p->name != NULL);
525 n = strlen(p->name);
526 _DIAGASSERT(n <= MB_LEN_MAX);
527 if (ei->mb_cur_max < n)
528 ei->mb_cur_max = n;
529 errnum = mnemonic_append_child(ei->mroot,
530 p->name, p->value, ei->invalid);
531 if (errnum != 0) {
532 _citrus_VIQR_encoding_module_uninit(ei);
533 return errnum;
537 return 0;
540 static __inline int
541 /*ARGSUSED*/
542 _citrus_VIQR_stdenc_get_state_desc_generic(_VIQREncodingInfo * __restrict ei,
543 _VIQRState * __restrict psenc, int * __restrict rstate)
545 /* ei may be unused */
546 _DIAGASSERT(psenc != NULL);
547 _DIAGASSERT(rstate != NULL);
549 *rstate = (psenc->chlen == 0)
550 ? _STDENC_SDGEN_INITIAL
551 : _STDENC_SDGEN_INCOMPLETE_CHAR;
553 return 0;
556 /* ----------------------------------------------------------------------
557 * public interface for ctype
560 _CITRUS_CTYPE_DECLS(VIQR);
561 _CITRUS_CTYPE_DEF_OPS(VIQR);
563 #include "citrus_ctype_template.h"
565 /* ----------------------------------------------------------------------
566 * public interface for stdenc
569 _CITRUS_STDENC_DECLS(VIQR);
570 _CITRUS_STDENC_DEF_OPS(VIQR);
572 #include "citrus_stdenc_template.h"