2 * Copyright (C) 1999-2001, 2008 Free Software Foundation, Inc.
3 * This file is part of the GNU LIBICONV Library.
5 * The GNU LIBICONV Library is free software; you can redistribute it
6 * and/or modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
10 * The GNU LIBICONV Library is distributed in the hope that it will be
11 * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
15 * You should have received a copy of the GNU Library General Public
16 * License along with the GNU LIBICONV Library; see the file COPYING.LIB.
17 * If not, write to the Free Software Foundation, Inc., 51 Franklin Street,
18 * Fifth Floor, Boston, MA 02110-1301, USA.
25 /* Specification: RFC 1557 */
27 /* Note: CJK.INF says the SO designator needs to appear only once at the
28 beginning of a text, but to decrease the risk of ambiguities, when
29 producing ISO-2022-KR, we repeat the designator in every line containing
30 SO characters. RFC 1557 does not mandate this. */
37 * The state is composed of one of the following values
40 #define STATE_TWOBYTE 1
42 * and one of the following values, << 8
45 #define STATE2_DESIGNATED_KSC5601 1
48 unsigned int state1 = state & 0xff, state2 = state >> 8
49 #define COMBINE_STATE \
50 state = (state2 << 8) | state1
53 iso2022_kr_mbtowc (conv_t conv
, ucs4_t
*pwc
, const unsigned char *s
, int n
)
55 state_t state
= conv
->istate
;
67 state2
= STATE2_DESIGNATED_KSC5601
;
78 if (state2
!= STATE2_DESIGNATED_KSC5601
)
80 state1
= STATE_TWOBYTE
;
98 int ret
= ascii_mbtowc(conv
,pwc
,s
,1);
101 if (ret
!= 1) abort();
102 #if 0 /* Accept ISO-2022-KR according to CJK.INF. */
103 if (*pwc
== 0x000a || *pwc
== 0x000d)
104 state2
= STATE2_NONE
;
107 conv
->istate
= state
;
114 if (state2
!= STATE2_DESIGNATED_KSC5601
) abort();
115 if (s
[0] < 0x80 && s
[1] < 0x80) {
116 int ret
= ksc5601_mbtowc(conv
,pwc
,s
,2);
117 if (ret
== RET_ILSEQ
)
119 if (ret
!= 2) abort();
121 conv
->istate
= state
;
130 conv
->istate
= state
;
131 return RET_TOOFEW(count
);
135 conv
->istate
= state
;
136 return RET_SHIFT_ILSEQ(count
);
140 iso2022_kr_wctomb (conv_t conv
, unsigned char *r
, ucs4_t wc
, int n
)
142 state_t state
= conv
->ostate
;
144 unsigned char buf
[2];
148 ret
= ascii_wctomb(conv
,buf
,wc
,1);
149 if (ret
!= RET_ILUNI
) {
150 if (ret
!= 1) abort();
152 int count
= (state1
== STATE_ASCII
? 1 : 2);
155 if (state1
!= STATE_ASCII
) {
158 state1
= STATE_ASCII
;
161 if (wc
== 0x000a || wc
== 0x000d)
162 state2
= STATE2_NONE
;
164 conv
->ostate
= state
;
169 /* Try KS C 5601-1992. */
170 ret
= ksc5601_wctomb(conv
,buf
,wc
,2);
171 if (ret
!= RET_ILUNI
) {
172 if (ret
!= 2) abort();
173 if (buf
[0] < 0x80 && buf
[1] < 0x80) {
174 int count
= (state2
== STATE2_DESIGNATED_KSC5601
? 0 : 4) + (state1
== STATE_TWOBYTE
? 0 : 1) + 2;
177 if (state2
!= STATE2_DESIGNATED_KSC5601
) {
183 state2
= STATE2_DESIGNATED_KSC5601
;
185 if (state1
!= STATE_TWOBYTE
) {
188 state1
= STATE_TWOBYTE
;
193 conv
->ostate
= state
;
202 iso2022_kr_reset (conv_t conv
, unsigned char *r
, int n
)
204 state_t state
= conv
->ostate
;
207 if (state1
!= STATE_ASCII
) {
211 /* conv->ostate = 0; will be done by the caller */
219 #undef STATE2_DESIGNATED_KSC5601