nl_langinfo is not thread-safe, avoid it
[vlc/asuraparaju-public.git] / src / text / unicode.c
blob41734eddc7cc0ade4b99a5a09494321bd4f541f4
1 /*****************************************************************************
2 * unicode.c: Unicode <-> locale functions
3 *****************************************************************************
4 * Copyright (C) 2005-2006 the VideoLAN team
5 * Copyright © 2005-2008 Rémi Denis-Courmont
7 * Authors: Rémi Denis-Courmont <rem # videolan.org>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 /*****************************************************************************
25 * Preamble
26 *****************************************************************************/
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
31 #include <vlc_common.h>
32 #include <vlc_charset.h>
34 #include <assert.h>
36 #include <stdio.h>
37 #include <stdarg.h>
38 #include <stdlib.h>
39 #include <sys/types.h>
40 #ifdef UNDER_CE
41 # include <tchar.h>
42 #endif
43 #include <errno.h>
45 #if defined (__APPLE__) || defined (HAVE_MAEMO)
46 /* Define this if the OS always use UTF-8 internally */
47 # define ASSUME_UTF8 1
48 #endif
50 #if defined (ASSUME_UTF8)
51 /* Cool */
52 #elif defined (WIN32) || defined (UNDER_CE)
53 # define USE_MB2MB 1
54 #elif defined (HAVE_ICONV)
55 # define USE_ICONV 1
56 #else
57 # error No UTF8 charset conversion implemented on this platform!
58 #endif
60 static char *locale_fast (const char *string, bool from)
62 if( string == NULL )
63 return NULL;
65 #if defined (USE_ICONV)
66 vlc_iconv_t hd = vlc_iconv_open (from ? "UTF-8" : "",
67 from ? "" : "UTF-8");
68 if (hd == (vlc_iconv_t)(-1))
69 return NULL; /* Uho! */
71 const char *iptr = string;
72 size_t inb = strlen (string);
73 size_t outb = inb * 6 + 1;
74 char output[outb], *optr = output;
76 while (vlc_iconv (hd, &iptr, &inb, &optr, &outb) == (size_t)(-1))
78 *optr++ = '?';
79 outb--;
80 iptr++;
81 inb--;
82 vlc_iconv (hd, NULL, NULL, NULL, NULL); /* reset */
84 *optr = '\0';
85 vlc_iconv_close (hd);
87 assert (inb == 0);
88 assert (*iptr == '\0');
89 assert (*optr == '\0');
90 assert (strlen (output) == (size_t)(optr - output));
91 return strdup (output);
92 #elif defined (USE_MB2MB)
93 char *out;
94 int len;
96 len = 1 + MultiByteToWideChar (from ? CP_ACP : CP_UTF8,
97 0, string, -1, NULL, 0);
98 wchar_t *wide = malloc (len * sizeof (wchar_t));
99 if (wide == NULL)
100 return NULL;
102 MultiByteToWideChar (from ? CP_ACP : CP_UTF8, 0, string, -1, wide, len);
103 len = 1 + WideCharToMultiByte (from ? CP_UTF8 : CP_ACP, 0, wide, -1,
104 NULL, 0, NULL, NULL);
105 out = malloc (len);
106 if (out != NULL)
107 WideCharToMultiByte (from ? CP_UTF8 : CP_ACP, 0, wide, -1, out, len,
108 NULL, NULL);
109 free (wide);
110 return out;
111 #else
112 (void)from;
113 return (char *)string;
114 #endif
118 static inline char *locale_dup (const char *string, bool from)
120 assert( string );
122 #if defined (USE_ICONV)
123 return locale_fast (string, from);
124 #elif defined (USE_MB2MB)
125 return locale_fast (string, from);
126 #else
127 (void)from;
128 return strdup (string);
129 #endif
133 * Releases (if needed) a localized or uniformized string.
134 * @param str non-NULL return value from FromLocale() or ToLocale().
136 void LocaleFree (const char *str)
138 #if defined (USE_ICONV)
139 free ((char *)str);
140 #elif defined (USE_MB2MB)
141 free ((char *)str);
142 #else
143 (void)str;
144 #endif
149 * Converts a string from the system locale character encoding to UTF-8.
151 * @param locale nul-terminated string to convert
153 * @return a nul-terminated UTF-8 string, or NULL in case of error.
154 * To avoid memory leak, you have to pass the result to LocaleFree()
155 * when it is no longer needed.
157 char *FromLocale (const char *locale)
159 return locale_fast (locale, true);
163 * converts a string from the system locale character encoding to utf-8,
164 * the result is always allocated on the heap.
166 * @param locale nul-terminated string to convert
168 * @return a nul-terminated utf-8 string, or null in case of error.
169 * The result must be freed using free() - as with the strdup() function.
171 char *FromLocaleDup (const char *locale)
173 return locale_dup (locale, true);
178 * ToLocale: converts an UTF-8 string to local system encoding.
180 * @param utf8 nul-terminated string to be converted
182 * @return a nul-terminated string, or NULL in case of error.
183 * To avoid memory leak, you have to pass the result to LocaleFree()
184 * when it is no longer needed.
186 char *ToLocale (const char *utf8)
188 return locale_fast (utf8, false);
193 * converts a string from UTF-8 to the system locale character encoding,
194 * the result is always allocated on the heap.
196 * @param utf8 nul-terminated string to convert
198 * @return a nul-terminated string, or null in case of error.
199 * The result must be freed using free() - as with the strdup() function.
201 char *ToLocaleDup (const char *utf8)
203 return locale_dup (utf8, false);
207 * Formats an UTF-8 string as vasprintf(), then print it to stdout, with
208 * appropriate conversion to local encoding.
210 static int utf8_vasprintf( char **str, const char *fmt, va_list ap )
212 char *utf8;
213 int res = vasprintf( &utf8, fmt, ap );
214 if( res == -1 )
215 return -1;
217 *str = ToLocaleDup( utf8 );
218 free( utf8 );
219 return res;
223 * Formats an UTF-8 string as vfprintf(), then print it, with
224 * appropriate conversion to local encoding.
226 int utf8_vfprintf( FILE *stream, const char *fmt, va_list ap )
228 char *str;
229 int res = utf8_vasprintf( &str, fmt, ap );
230 if( res == -1 )
231 return -1;
233 fputs( str, stream );
234 free( str );
235 return res;
239 * Formats an UTF-8 string as fprintf(), then print it, with
240 * appropriate conversion to local encoding.
242 int utf8_fprintf( FILE *stream, const char *fmt, ... )
244 va_list ap;
245 int res;
247 va_start( ap, fmt );
248 res = utf8_vfprintf( stream, fmt, ap );
249 va_end( ap );
250 return res;
254 static char *CheckUTF8( char *str, char rep )
256 uint8_t *ptr = (uint8_t *)str;
257 assert (str != NULL);
259 for (;;)
261 uint8_t c = ptr[0];
263 if (c == '\0')
264 break;
266 if (c > 0xF4)
267 goto error;
269 int charlen = clz8 (c ^ 0xFF);
270 switch (charlen)
272 case 0: // 7-bit ASCII character -> OK
273 ptr++;
274 continue;
276 case 1: // continuation byte -> error
277 goto error;
280 assert (charlen >= 2 && charlen <= 4);
282 uint32_t cp = c & ~((0xff >> (7 - charlen)) << (7 - charlen));
283 for (int i = 1; i < charlen; i++)
285 assert (cp < (1 << 26));
286 c = ptr[i];
288 if ((c >> 6) != 2) // not a continuation byte
289 goto error;
291 cp = (cp << 6) | (ptr[i] & 0x3f);
294 switch (charlen)
296 case 4:
297 if (cp > 0x10FFFF) // beyond Unicode
298 goto error;
299 case 3:
300 if (cp >= 0xD800 && cp < 0xC000) // UTF-16 surrogate
301 goto error;
302 case 2:
303 if (cp < 128) // ASCII overlong
304 goto error;
305 if (cp < (1u << (5 * charlen - 3))) // overlong
306 goto error;
308 ptr += charlen;
309 continue;
311 error:
312 if (rep == 0)
313 return NULL;
314 *ptr++ = rep;
315 str = NULL;
318 return str;
322 * Replaces invalid/overlong UTF-8 sequences with question marks.
323 * Note that it is not possible to convert from Latin-1 to UTF-8 on the fly,
324 * so we don't try that, even though it would be less disruptive.
326 * @return str if it was valid UTF-8, NULL if not.
328 char *EnsureUTF8( char *str )
330 return CheckUTF8( str, '?' );
335 * Checks whether a string is a valid UTF-8 byte sequence.
337 * @param str nul-terminated string to be checked
339 * @return str if it was valid UTF-8, NULL if not.
341 const char *IsUTF8( const char *str )
343 return CheckUTF8( (char *)str, 0 );
347 * Converts a string from the given character encoding to utf-8.
349 * @return a nul-terminated utf-8 string, or null in case of error.
350 * The result must be freed using free().
352 char *FromCharset(const char *charset, const void *data, size_t data_size)
354 vlc_iconv_t handle = vlc_iconv_open ("UTF-8", charset);
355 if (handle == (vlc_iconv_t)(-1))
356 return NULL;
358 char *out = NULL;
359 for(unsigned mul = 4; mul < 8; mul++ )
361 size_t in_size = data_size;
362 const char *in = data;
363 size_t out_max = mul * data_size;
364 char *tmp = out = malloc (1 + out_max);
365 if (!out)
366 break;
368 if (vlc_iconv (handle, &in, &in_size, &tmp, &out_max) != (size_t)(-1)) {
369 *tmp = '\0';
370 break;
372 free(out);
373 out = NULL;
375 if (errno != E2BIG)
376 break;
378 vlc_iconv_close(handle);
379 return out;