1247738Sbapt/*
2247738Sbapt * Copyright (c) 2002-2004 Tim J. Robbins. All rights reserved.
3247738Sbapt *
4247738Sbapt *    ja_JP.SJIS locale table for BSD4.4/rune
5247738Sbapt *    version 1.0
6247738Sbapt *    (C) Sin'ichiro MIYATANI / Phase One, Inc
7247738Sbapt *    May 12, 1995
8247738Sbapt *
9247738Sbapt * Copyright (c) 2011 The FreeBSD Foundation
10247738Sbapt * All rights reserved.
11247738Sbapt * Portions of this software were developed by David Chisnall
12247738Sbapt * under sponsorship from the FreeBSD Foundation.
13247738Sbapt *
14247738Sbapt * Redistribution and use in source and binary forms, with or without
15247738Sbapt * modification, are permitted provided that the following conditions
16247738Sbapt * are met:
17247738Sbapt * 1. Redistributions of source code must retain the above copyright
18247738Sbapt *    notice, this list of conditions and the following disclaimer.
19247738Sbapt * 2. Redistributions in binary form must reproduce the above copyright
20247738Sbapt *    notice, this list of conditions and the following disclaimer in the
21247738Sbapt *    documentation and/or other materials provided with the distribution.
22247738Sbapt * 3. All advertising materials mentioning features or use of this software
23247738Sbapt *    must display the following acknowledgement:
24247738Sbapt *      This product includes software developed by Phase One, Inc.
25247738Sbapt * 4. The name of Phase One, Inc. may be used to endorse or promote products
26247738Sbapt *    derived from this software without specific prior written permission.
27247738Sbapt *
28247738Sbapt * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29247738Sbapt * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30247738Sbapt * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31247738Sbapt * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32247738Sbapt * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33247738Sbapt * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34247738Sbapt * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35247738Sbapt * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36247738Sbapt * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37247738Sbapt * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38247738Sbapt * SUCH DAMAGE.
39247738Sbapt */
40247738Sbapt
41247738Sbapt#if defined(LIBC_SCCS) && !defined(lint)
42247738Sbaptstatic char sccsid[] = "@(#)mskanji.c	1.0 (Phase One) 5/5/95";
43247738Sbapt#endif /* LIBC_SCCS and not lint */
44247738Sbapt#include <sys/cdefs.h>
45247738Sbapt__FBSDID("$FreeBSD$");
46247738Sbapt
47247738Sbapt#include <sys/types.h>
48247738Sbapt#include <errno.h>
49247738Sbapt#include <runetype.h>
50247738Sbapt#include <stdlib.h>
51247738Sbapt#include <string.h>
52247738Sbapt#include <wchar.h>
53247738Sbapt#include "mblocal.h"
54247738Sbapt
55247738Sbaptextern int __mb_sb_limit;
56247738Sbapt
57247738Sbaptstatic size_t	_MSKanji_mbrtowc(wchar_t * __restrict, const char * __restrict,
58247738Sbapt		    size_t, mbstate_t * __restrict);
59247738Sbaptstatic int	_MSKanji_mbsinit(const mbstate_t *);
60247738Sbaptstatic size_t	_MSKanji_wcrtomb(char * __restrict, wchar_t,
61247738Sbapt		    mbstate_t * __restrict);
62247738Sbapt
63247738Sbapttypedef struct {
64247738Sbapt	wchar_t	ch;
65247738Sbapt} _MSKanjiState;
66247738Sbapt
67247738Sbaptint
68247738Sbapt_MSKanji_init(struct xlocale_ctype *l, _RuneLocale *rl)
69247738Sbapt{
70247738Sbapt
71247738Sbapt	l->__mbrtowc = _MSKanji_mbrtowc;
72	l->__wcrtomb = _MSKanji_wcrtomb;
73	l->__mbsinit = _MSKanji_mbsinit;
74	l->runes = rl;
75	l->__mb_cur_max = 2;
76	l->__mb_sb_limit = 224;
77	return (0);
78}
79
80static int
81_MSKanji_mbsinit(const mbstate_t *ps)
82{
83
84	return (ps == NULL || ((const _MSKanjiState *)ps)->ch == 0);
85}
86
87static size_t
88_MSKanji_mbrtowc(wchar_t * __restrict pwc, const char * __restrict s, size_t n,
89    mbstate_t * __restrict ps)
90{
91	_MSKanjiState *ms;
92	wchar_t wc;
93
94	ms = (_MSKanjiState *)ps;
95
96	if ((ms->ch & ~0xFF) != 0) {
97		/* Bad conversion state. */
98		errno = EINVAL;
99		return ((size_t)-1);
100	}
101
102	if (s == NULL) {
103		s = "";
104		n = 1;
105		pwc = NULL;
106	}
107
108	if (n == 0)
109		/* Incomplete multibyte sequence */
110		return ((size_t)-2);
111
112	if (ms->ch != 0) {
113		if (*s == '\0') {
114			errno = EILSEQ;
115			return ((size_t)-1);
116		}
117		wc = (ms->ch << 8) | (*s & 0xFF);
118		if (pwc != NULL)
119			*pwc = wc;
120		ms->ch = 0;
121		return (1);
122	}
123	wc = *s++ & 0xff;
124	if ((wc > 0x80 && wc < 0xa0) || (wc >= 0xe0 && wc < 0xfd)) {
125		if (n < 2) {
126			/* Incomplete multibyte sequence */
127			ms->ch = wc;
128			return ((size_t)-2);
129		}
130		if (*s == '\0') {
131			errno = EILSEQ;
132			return ((size_t)-1);
133		}
134		wc = (wc << 8) | (*s++ & 0xff);
135		if (pwc != NULL)
136			*pwc = wc;
137		return (2);
138	} else {
139		if (pwc != NULL)
140			*pwc = wc;
141		return (wc == L'\0' ? 0 : 1);
142	}
143}
144
145static size_t
146_MSKanji_wcrtomb(char * __restrict s, wchar_t wc, mbstate_t * __restrict ps)
147{
148	_MSKanjiState *ms;
149	int len, i;
150
151	ms = (_MSKanjiState *)ps;
152
153	if (ms->ch != 0) {
154		errno = EINVAL;
155		return ((size_t)-1);
156	}
157
158	if (s == NULL)
159		/* Reset to initial shift state (no-op) */
160		return (1);
161	len = (wc > 0x100) ? 2 : 1;
162	for (i = len; i-- > 0; )
163		*s++ = wc >> (i << 3);
164	return (len);
165}
166