1 /* Character set conversion.
2 Copyright (C) 1999-2001, 2007, 2009-2024 Free Software Foundation, Inc.
4 This file is free software: you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as
6 published by the Free Software Foundation; either version 2.1 of the
7 License, or (at your option) any later version.
9 This file is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
33 /* UTF-{16,32}{BE,LE} converters taken from GNU libiconv 1.11. */
35 /* Return code if invalid. (xxx_mbtowc) */
37 /* Return code if no bytes were read. (xxx_mbtowc) */
38 # define RET_TOOFEW -2
40 /* Return code if invalid. (xxx_wctomb) */
42 /* Return code if output buffer is too small. (xxx_wctomb, xxx_reset) */
43 # define RET_TOOSMALL -2
49 /* Specification: RFC 2781 */
52 utf16be_mbtowc (ucs4_t
*pwc
, const unsigned char *s
, size_t n
)
56 ucs4_t wc
= (s
[0] << 8) + s
[1];
57 if (wc
>= 0xd800 && wc
< 0xdc00)
61 ucs4_t wc2
= (s
[2] << 8) + s
[3];
62 if (!(wc2
>= 0xdc00 && wc2
< 0xe000))
64 *pwc
= 0x10000 + ((wc
- 0xd800) << 10) + (wc2
- 0xdc00);
68 else if (wc
>= 0xdc00 && wc
< 0xe000)
82 utf16be_wctomb (unsigned char *r
, ucs4_t wc
, size_t n
)
84 if (!(wc
>= 0xd800 && wc
< 0xe000))
90 r
[0] = (unsigned char) (wc
>> 8);
91 r
[1] = (unsigned char) wc
;
97 else if (wc
< 0x110000)
101 ucs4_t wc1
= 0xd800 + ((wc
- 0x10000) >> 10);
102 ucs4_t wc2
= 0xdc00 + ((wc
- 0x10000) & 0x3ff);
103 r
[0] = (unsigned char) (wc1
>> 8);
104 r
[1] = (unsigned char) wc1
;
105 r
[2] = (unsigned char) (wc2
>> 8);
106 r
[3] = (unsigned char) wc2
;
120 /* Specification: RFC 2781 */
123 utf16le_mbtowc (ucs4_t
*pwc
, const unsigned char *s
, size_t n
)
127 ucs4_t wc
= s
[0] + (s
[1] << 8);
128 if (wc
>= 0xd800 && wc
< 0xdc00)
132 ucs4_t wc2
= s
[2] + (s
[3] << 8);
133 if (!(wc2
>= 0xdc00 && wc2
< 0xe000))
135 *pwc
= 0x10000 + ((wc
- 0xd800) << 10) + (wc2
- 0xdc00);
139 else if (wc
>= 0xdc00 && wc
< 0xe000)
153 utf16le_wctomb (unsigned char *r
, ucs4_t wc
, size_t n
)
155 if (!(wc
>= 0xd800 && wc
< 0xe000))
161 r
[0] = (unsigned char) wc
;
162 r
[1] = (unsigned char) (wc
>> 8);
168 else if (wc
< 0x110000)
172 ucs4_t wc1
= 0xd800 + ((wc
- 0x10000) >> 10);
173 ucs4_t wc2
= 0xdc00 + ((wc
- 0x10000) & 0x3ff);
174 r
[0] = (unsigned char) wc1
;
175 r
[1] = (unsigned char) (wc1
>> 8);
176 r
[2] = (unsigned char) wc2
;
177 r
[3] = (unsigned char) (wc2
>> 8);
191 /* Specification: Unicode 3.1 Standard Annex #19 */
194 utf32be_mbtowc (ucs4_t
*pwc
, const unsigned char *s
, size_t n
)
198 ucs4_t wc
= ((ucs4_t
) s
[0] << 24)
199 + ((ucs4_t
) s
[1] << 16)
200 + ((ucs4_t
) s
[2] << 8)
202 if (wc
< 0x110000 && !(wc
>= 0xd800 && wc
< 0xe000))
214 utf32be_wctomb (unsigned char *r
, ucs4_t wc
, size_t n
)
216 if (wc
< 0x110000 && !(wc
>= 0xd800 && wc
< 0xe000))
221 r
[1] = (unsigned char) (wc
>> 16);
222 r
[2] = (unsigned char) (wc
>> 8);
223 r
[3] = (unsigned char) wc
;
236 /* Specification: Unicode 3.1 Standard Annex #19 */
239 utf32le_mbtowc (ucs4_t
*pwc
, const unsigned char *s
, size_t n
)
243 ucs4_t wc
= (ucs4_t
) s
[0]
244 + ((ucs4_t
) s
[1] << 8)
245 + ((ucs4_t
) s
[2] << 16)
246 + ((ucs4_t
) s
[3] << 24);
247 if (wc
< 0x110000 && !(wc
>= 0xd800 && wc
< 0xe000))
259 utf32le_wctomb (unsigned char *r
, ucs4_t wc
, size_t n
)
261 if (wc
< 0x110000 && !(wc
>= 0xd800 && wc
< 0xe000))
265 r
[0] = (unsigned char) wc
;
266 r
[1] = (unsigned char) (wc
>> 8);
267 r
[2] = (unsigned char) (wc
>> 16);
280 rpl_iconv (iconv_t cd
,
281 ICONV_CONST
char **inbuf
, size_t *inbytesleft
,
282 char **outbuf
, size_t *outbytesleft
)
285 #if REPLACE_ICONV_UTF
286 switch ((uintptr_t) cd
)
289 int (*xxx_wctomb
) (unsigned char *, ucs4_t
, size_t);
291 case (uintptr_t) _ICONV_UTF8_UTF16BE
:
292 xxx_wctomb
= utf16be_wctomb
;
294 case (uintptr_t) _ICONV_UTF8_UTF16LE
:
295 xxx_wctomb
= utf16le_wctomb
;
297 case (uintptr_t) _ICONV_UTF8_UTF32BE
:
298 xxx_wctomb
= utf32be_wctomb
;
300 case (uintptr_t) _ICONV_UTF8_UTF32LE
:
301 xxx_wctomb
= utf32le_wctomb
;
305 if (inbuf
== NULL
|| *inbuf
== NULL
)
308 ICONV_CONST
char *inptr
= *inbuf
;
309 size_t inleft
= *inbytesleft
;
310 char *outptr
= *outbuf
;
311 size_t outleft
= *outbytesleft
;
316 int m
= u8_mbtoucr (&uc
, (const uint8_t *) inptr
, inleft
);
335 int n
= xxx_wctomb ((uint8_t *) outptr
, uc
, outleft
);
344 if (n
== RET_TOOSMALL
)
362 *inbytesleft
= inleft
;
364 *outbytesleft
= outleft
;
370 int (*xxx_mbtowc
) (ucs4_t
*, const unsigned char *, size_t);
372 case (uintptr_t) _ICONV_UTF16BE_UTF8
:
373 xxx_mbtowc
= utf16be_mbtowc
;
375 case (uintptr_t) _ICONV_UTF16LE_UTF8
:
376 xxx_mbtowc
= utf16le_mbtowc
;
378 case (uintptr_t) _ICONV_UTF32BE_UTF8
:
379 xxx_mbtowc
= utf32be_mbtowc
;
381 case (uintptr_t) _ICONV_UTF32LE_UTF8
:
382 xxx_mbtowc
= utf32le_mbtowc
;
386 if (inbuf
== NULL
|| *inbuf
== NULL
)
389 ICONV_CONST
char *inptr
= *inbuf
;
390 size_t inleft
= *inbytesleft
;
391 char *outptr
= *outbuf
;
392 size_t outleft
= *outbytesleft
;
397 int m
= xxx_mbtowc (&uc
, (const uint8_t *) inptr
, inleft
);
416 int n
= u8_uctomb ((uint8_t *) outptr
, uc
, outleft
);
443 *inbytesleft
= inleft
;
445 *outbytesleft
= outleft
;
451 return iconv (cd
, inbuf
, inbytesleft
, outbuf
, outbytesleft
);