1 /*****************************************************************************
2 * vlc_charset.h: Unicode UTF-8 wrappers function
3 *****************************************************************************
4 * Copyright (C) 2003-2005 VLC authors and VideoLAN
5 * Copyright © 2005-2010 Rémi Denis-Courmont
8 * Author: Rémi Denis-Courmont <rem # videolan,org>
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU Lesser General Public License as published by
12 * the Free Software Foundation; either version 2.1 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public License
21 * along with this program; if not, write to the Free Software Foundation,
22 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
26 #define VLC_CHARSET_H 1
30 * This files handles locale conversions in vlc
33 /* iconv wrappers (defined in src/extras/libc.c) */
34 typedef void *vlc_iconv_t
;
35 VLC_API vlc_iconv_t
vlc_iconv_open( const char *, const char * ) VLC_USED
;
36 VLC_API
size_t vlc_iconv( vlc_iconv_t
, const char **, size_t *, char **, size_t * ) VLC_USED
;
37 VLC_API
int vlc_iconv_close( vlc_iconv_t
);
41 VLC_API
int utf8_vfprintf( FILE *stream
, const char *fmt
, va_list ap
);
42 VLC_API
int utf8_fprintf( FILE *, const char *, ... ) VLC_FORMAT( 2, 3 );
43 VLC_API
char * vlc_strcasestr(const char *, const char *) VLC_USED
;
45 VLC_API
char * EnsureUTF8( char * );
46 VLC_API
const char * IsUTF8( const char * ) VLC_USED
;
48 VLC_API
char * FromCharset( const char *charset
, const void *data
, size_t data_size
) VLC_USED
;
49 VLC_API
void * ToCharset( const char *charset
, const char *in
, size_t *outsize
) VLC_USED
;
53 static inline char *FromWide (const wchar_t *wide
)
55 size_t len
= WideCharToMultiByte (CP_UTF8
, 0, wide
, -1, NULL
, 0, NULL
, NULL
);
59 char *out
= (char *)malloc (len
);
62 WideCharToMultiByte (CP_UTF8
, 0, wide
, -1, out
, len
, NULL
, NULL
);
67 static inline wchar_t *ToWide (const char *utf8
)
69 int len
= MultiByteToWideChar (CP_UTF8
, 0, utf8
, -1, NULL
, 0);
73 wchar_t *out
= (wchar_t *)malloc (len
* sizeof (wchar_t));
76 MultiByteToWideChar (CP_UTF8
, 0, utf8
, -1, out
, len
);
81 static inline char *ToCodePage (unsigned cp
, const char *utf8
)
83 wchar_t *wide
= ToWide (utf8
);
87 size_t len
= WideCharToMultiByte (cp
, 0, wide
, -1, NULL
, 0, NULL
, NULL
);
91 char *out
= (char *)malloc (len
);
92 if (likely(out
!= NULL
))
93 WideCharToMultiByte (cp
, 0, wide
, -1, out
, len
, NULL
, NULL
);
99 static inline char *FromCodePage (unsigned cp
, const char *mb
)
101 int len
= MultiByteToWideChar (cp
, 0, mb
, -1, NULL
, 0);
105 wchar_t *wide
= (wchar_t *)malloc (len
* sizeof (wchar_t));
106 if (unlikely(wide
== NULL
))
108 MultiByteToWideChar (cp
, 0, mb
, -1, wide
, len
);
110 char *utf8
= FromWide (wide
);
116 static inline char *FromANSI (const char *ansi
)
118 return FromCodePage (GetACP (), ansi
);
122 static inline char *ToANSI (const char *utf8
)
124 return ToCodePage (GetACP (), utf8
);
128 # define FromT FromWide
131 # define FromT FromANSI
134 # define FromLocale FromANSI
135 # define ToLocale ToANSI
136 # define LocaleFree(s) free((char *)(s))
137 # define FromLocaleDup FromANSI
138 # define ToLocaleDup ToANSI
140 #elif defined(__OS2__)
142 VLC_USED
static inline char *FromLocale (const char *locale
)
144 return locale
? FromCharset ((char *)"", locale
, strlen(locale
)) : NULL
;
147 VLC_USED
static inline char *ToLocale (const char *utf8
)
150 return utf8
? (char *)ToCharset ("", utf8
, &outsize
) : NULL
;
153 VLC_USED
static inline void LocaleFree (const char *str
)
158 VLC_USED
static inline char *FromLocaleDup (const char *locale
)
160 return FromCharset ("", locale
, strlen(locale
));
163 VLC_USED
static inline char *ToLocaleDup (const char *utf8
)
166 return (char *)ToCharset ("", utf8
, &outsize
);
171 # define FromLocale(l) (l)
172 # define ToLocale(u) (u)
173 # define LocaleFree(s) ((void)(s))
174 # define FromLocaleDup strdup
175 # define ToLocaleDup strdup
179 * Converts a nul-terminated string from ISO-8859-1 to UTF-8.
181 static inline char *FromLatin1 (const char *latin
)
183 char *str
= (char *)malloc (2 * strlen (latin
) + 1), *utf8
= str
;
189 while ((c
= *(latin
++)) != '\0')
193 *(utf8
++) = 0xC0 | (c
>> 6);
194 *(utf8
++) = 0x80 | (c
& 0x3F);
201 utf8
= (char *)realloc (str
, utf8
- str
);
202 return utf8
? utf8
: str
;
205 VLC_API
double us_strtod( const char *, char ** ) VLC_USED
;
206 VLC_API
float us_strtof( const char *, char ** ) VLC_USED
;
207 VLC_API
double us_atof( const char * ) VLC_USED
;
208 VLC_API
int us_vasprintf( char **, const char *, va_list );
209 VLC_API
int us_asprintf( char **, const char *, ... ) VLC_USED
;