1 /* $NetBSD: iswctype_mb.c,v 1.11 2010/06/13 04:14:57 tnozaki Exp $ */
4 * Copyright (c)2008 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
29 #include <sys/cdefs.h>
30 #if defined(LIBC_SCCS) && !defined(lint)
31 __RCSID("$NetBSD: iswctype_mb.c,v 1.11 2010/06/13 04:14:57 tnozaki Exp $");
32 #endif /* LIBC_SCCS and not lint */
34 #include "namespace.h"
35 #include <sys/types.h>
38 #define __SETLOCALE_SOURCE__
44 #include "setlocale_local.h"
46 #include "runetype_local.h"
47 #include "_wctype_local.h"
48 #include "_wctrans_local.h"
50 #define _RUNE_LOCALE() ((_RuneLocale const *) \
51 (*_current_locale())->part_impl[(size_t)LC_CTYPE])
53 #define _ISWCTYPE_FUNC(name, index) \
55 isw##name(wint_t wc) \
57 _RuneLocale const *rl; \
58 _WCTypeEntry const *te; \
60 rl = _RUNE_LOCALE(); \
61 te = &rl->rl_wctype[index]; \
62 return _iswctype_priv(rl, wc, te); \
64 _ISWCTYPE_FUNC(alnum
, _WCTYPE_INDEX_ALNUM
)
65 _ISWCTYPE_FUNC(alpha
, _WCTYPE_INDEX_ALPHA
)
66 _ISWCTYPE_FUNC(blank
, _WCTYPE_INDEX_BLANK
)
67 _ISWCTYPE_FUNC(cntrl
, _WCTYPE_INDEX_CNTRL
)
68 _ISWCTYPE_FUNC(digit
, _WCTYPE_INDEX_DIGIT
)
69 _ISWCTYPE_FUNC(graph
, _WCTYPE_INDEX_GRAPH
)
70 _ISWCTYPE_FUNC(lower
, _WCTYPE_INDEX_LOWER
)
71 _ISWCTYPE_FUNC(print
, _WCTYPE_INDEX_PRINT
)
72 _ISWCTYPE_FUNC(punct
, _WCTYPE_INDEX_PUNCT
)
73 _ISWCTYPE_FUNC(space
, _WCTYPE_INDEX_SPACE
)
74 _ISWCTYPE_FUNC(upper
, _WCTYPE_INDEX_UPPER
)
75 _ISWCTYPE_FUNC(xdigit
, _WCTYPE_INDEX_XDIGIT
)
77 #define _TOWCTRANS_FUNC(name, index) \
79 tow##name(wint_t wc) \
81 _RuneLocale const *rl; \
82 _WCTransEntry const *te; \
84 rl = _RUNE_LOCALE(); \
85 te = &rl->rl_wctrans[index]; \
86 return _towctrans_priv(wc, te); \
88 _TOWCTRANS_FUNC(upper
, _WCTRANS_INDEX_UPPER
)
89 _TOWCTRANS_FUNC(lower
, _WCTRANS_INDEX_LOWER
)
92 wctype(const char *charclass
)
94 _RuneLocale
const *rl
;
98 for (i
= 0; i
< _WCTYPE_NINDEXES
; ++i
) {
99 if (!strcmp(rl
->rl_wctype
[i
].te_name
, charclass
))
100 return (wctype_t)__UNCONST(&rl
->rl_wctype
[i
]);
102 return (wctype_t)NULL
;
106 wctrans(const char *charmap
)
108 _RuneLocale
const *rl
;
112 for (i
= 0; i
< _WCTRANS_NINDEXES
; ++i
) {
113 _DIAGASSERT(rl
->rl_wctrans
[i
].te_name
!= NULL
);
114 if (!strcmp(rl
->rl_wctrans
[i
].te_name
, charmap
))
115 return (wctrans_t)__UNCONST(&rl
->rl_wctype
[i
]);
117 return (wctrans_t)NULL
;
121 iswctype(wint_t wc
, wctype_t charclass
)
123 _RuneLocale
const *rl
;
124 _WCTypeEntry
const *te
;
126 if (charclass
== NULL
) {
131 te
= (_WCTypeEntry
const *)(void *)charclass
;
132 return _iswctype_priv(rl
, wc
, te
);
136 towctrans(wint_t wc
, wctrans_t charmap
)
138 _WCTransEntry
const *te
;
140 if (charmap
== NULL
) {
144 te
= (_WCTransEntry
const *)(void *)charmap
;
145 return _towctrans_priv(wc
, te
);
148 __weak_alias(wcwidth
,_wcwidth
)
153 _RuneLocale
const *rl
;
159 x
= _runetype_priv(rl
, wc
);
161 return ((unsigned)x
& _RUNETYPE_SWM
) >> _RUNETYPE_SWS
;
166 wcswidth(const wchar_t * __restrict ws
, size_t wn
)
168 _RuneLocale
const *rl
;
172 _DIAGASSERT(ws
!= NULL
);
176 while (wn
> 0 && *ws
!= L
'\0') {
177 x
= _runetype_priv(rl
, *ws
);
178 if ((x
& _RUNETYPE_R
) == 0)
180 width
+= ((unsigned)x
& _RUNETYPE_SWM
) >> _RUNETYPE_SWS
;