1 /* toutf8.c convert strings from system locale into UTF-8
2 * Copyright (C) 2002 Simon Josefsson
4 * This file is part of libstringprep.
6 * Libstringprep is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * Libstringprep is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with libstringprep; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
34 stringprep_locale_charset_slow ()
36 const char *charset
= getenv ("CHARSET");
39 if (charset
&& *charset
)
43 p
= setlocale (LC_CTYPE
, NULL
);
44 setlocale (LC_CTYPE
, "");
46 charset
= nl_langinfo (CODESET
);
48 setlocale (LC_CTYPE
, p
);
51 if (charset
&& *charset
)
57 static const char *stringprep_locale_charset_cache
= NULL
;
60 stringprep_locale_charset ()
62 if (!stringprep_locale_charset_cache
)
63 stringprep_locale_charset_cache
= stringprep_locale_charset_slow ();
65 return stringprep_locale_charset_cache
;
69 stringprep_convert (const char *str
,
70 const char *to_codeset
, const char *from_codeset
)
76 size_t inbytes_remaining
;
77 size_t outbytes_remaining
;
83 if (strcmp (to_codeset
, from_codeset
) == 0)
86 cd
= iconv_open (to_codeset
, from_codeset
);
88 if (cd
== (iconv_t
) - 1)
94 inbytes_remaining
= len
;
95 outbuf_size
= len
+ 1; /* + 1 for nul in case len == 1 */
97 outbytes_remaining
= outbuf_size
- 1; /* -1 for nul */
98 outp
= dest
= malloc (outbuf_size
);
102 err
= iconv (cd
, &p
, &inbytes_remaining
, &outp
, &outbytes_remaining
);
104 if (err
== (size_t) - 1)
109 /* Incomplete text, do not report an error */
114 size_t used
= outp
- dest
;
117 dest
= realloc (dest
, outbuf_size
);
120 outbytes_remaining
= outbuf_size
- used
- 1; /* -1 for nul */
138 if ((p
- str
) != len
)
155 stringprep_locale_charset ()
161 stringprep_convert (const char *str
,
162 const char *to_codeset
, const char *from_codeset
)
170 stringprep_locale_to_utf8 (const char *str
)
172 return stringprep_convert (str
, "UTF-8", stringprep_locale_charset ());