2 * Copyright 2013 Garrett D'Amore <garrett@damore.org>
3 * Copyright 2010 Nexenta Systems, Inc. All rights reserved.
4 * Copyright (c) 2002-2004 Tim J. Robbins. All rights reserved.
6 * The Regents of the University of California. All rights reserved.
8 * This code is derived from software contributed to Berkeley by
9 * Paul Borman at Krystal Technologies.
11 * Copyright (c) 2011 The FreeBSD Foundation
12 * All rights reserved.
13 * Portions of this software were developed by David Chisnall
14 * under sponsorship from the FreeBSD Foundation.
16 * Redistribution and use in source and binary forms, with or without
17 * modification, are permitted provided that the following conditions
19 * 1. Redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer.
21 * 2. Redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution.
24 * 3. Neither the name of the University nor the names of its contributors
25 * may be used to endorse or promote products derived from this software
26 * without specific prior written permission.
28 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40 * @(#)big5.c 8.1 (Berkeley) 6/4/93
43 #include <sys/types.h>
51 extern int __mb_sb_limit
;
53 static size_t _BIG5_mbrtowc(wchar_t * __restrict
, const char * __restrict
,
54 size_t, mbstate_t * __restrict
);
55 static int _BIG5_mbsinit(const mbstate_t *);
56 static size_t _BIG5_wcrtomb(char * __restrict
, wchar_t,
57 mbstate_t * __restrict
);
58 static size_t _BIG5_mbsnrtowcs(wchar_t * __restrict
,
59 const char ** __restrict
, size_t, size_t,
60 mbstate_t * __restrict
);
61 static size_t _BIG5_wcsnrtombs(char * __restrict
,
62 const wchar_t ** __restrict
, size_t, size_t,
63 mbstate_t * __restrict
);
70 _BIG5_init(struct xlocale_ctype
*l
, _RuneLocale
*rl
)
73 l
->__mbrtowc
= _BIG5_mbrtowc
;
74 l
->__wcrtomb
= _BIG5_wcrtomb
;
75 l
->__mbsnrtowcs
= _BIG5_mbsnrtowcs
;
76 l
->__wcsnrtombs
= _BIG5_wcsnrtombs
;
77 l
->__mbsinit
= _BIG5_mbsinit
;
80 l
->__mb_sb_limit
= 128;
85 _BIG5_mbsinit(const mbstate_t *ps
)
88 return (ps
== NULL
|| ((const _BIG5State
*)ps
)->ch
== 0);
96 return ((c
>= 0xa1 && c
<= 0xfe) ? 2 : 1);
100 _BIG5_mbrtowc(wchar_t * __restrict pwc
, const char * __restrict s
, size_t n
,
101 mbstate_t * __restrict ps
)
107 bs
= (_BIG5State
*)ps
;
109 if ((bs
->ch
& ~0xFF) != 0) {
110 /* Bad conversion state. */
122 /* Incomplete multibyte sequence */
130 wc
= (bs
->ch
<< 8) | (*s
& 0xFF);
137 len
= (size_t)_big5_check(*s
);
141 /* Incomplete multibyte sequence */
149 wc
= (wc
<< 8) | (*s
++ & 0xff);
156 return (wc
== L
'\0' ? 0 : 1);
161 _BIG5_wcrtomb(char * __restrict s
, wchar_t wc
, mbstate_t * __restrict ps
)
165 bs
= (_BIG5State
*)ps
;
173 /* Reset to initial shift state (no-op) */
176 *s
++ = (wc
>> 8) & 0xff;
185 _BIG5_mbsnrtowcs(wchar_t * __restrict dst
, const char ** __restrict src
,
186 size_t nms
, size_t len
, mbstate_t * __restrict ps
)
188 return (__mbsnrtowcs_std(dst
, src
, nms
, len
, ps
, _BIG5_mbrtowc
));
192 _BIG5_wcsnrtombs(char * __restrict dst
, const wchar_t ** __restrict src
,
193 size_t nwc
, size_t len
, mbstate_t * __restrict ps
)
195 return (__wcsnrtombs_std(dst
, src
, nwc
, len
, ps
, _BIG5_wcrtomb
));