]> git.sesse.net Git - vlc/blob - include/vlc_charset.h
Win32: add FromANSI / ToANSI and use them
[vlc] / include / vlc_charset.h
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
6  * $Id$
7  *
8  * Author: Rémi Denis-Courmont <rem # videolan,org>
9  *
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.
14  *
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.
19  *
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  *****************************************************************************/
24
25 #ifndef VLC_CHARSET_H
26 #define VLC_CHARSET_H 1
27
28 /**
29  * \file
30  * This files handles locale conversions in vlc
31  */
32
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 );
38
39 #include <stdarg.h>
40
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;
44
45 VLC_API char * EnsureUTF8( char * );
46 VLC_API const char * IsUTF8( const char * ) VLC_USED;
47
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;
50
51 #ifndef WIN32
52 # define FromLocale(l) (l)
53 # define ToLocale(u)   (u)
54 # define LocaleFree(s) ((void)(s))
55 # define FromLocaleDup strdup
56 # define ToLocaleDup   strdup
57
58 #else
59 VLC_USED
60 static inline char *FromWide (const wchar_t *wide)
61 {
62     size_t len = WideCharToMultiByte (CP_UTF8, 0, wide, -1, NULL, 0, NULL, NULL);
63     if (len == 0)
64         return NULL;
65
66     char *out = (char *)malloc (len);
67
68     if (likely(out))
69         WideCharToMultiByte (CP_UTF8, 0, wide, -1, out, len, NULL, NULL);
70     return out;
71 }
72
73 VLC_USED
74 static inline wchar_t *ToWide (const char *utf8)
75 {
76     int len = MultiByteToWideChar (CP_UTF8, 0, utf8, -1, NULL, 0);
77     if (len == 0)
78         return NULL;
79
80     wchar_t *out = (wchar_t *)malloc (len * sizeof (wchar_t));
81
82     if (likely(out))
83         MultiByteToWideChar (CP_UTF8, 0, utf8, -1, out, len);
84     return out;
85 }
86
87 VLC_USED VLC_MALLOC
88 static inline char *ToCodePage (unsigned cp, const char *utf8)
89 {
90     wchar_t *wide = ToWide (utf8);
91     if (wide == NULL)
92         return NULL;
93
94     size_t len = WideCharToMultiByte (cp, 0, wide, -1, NULL, 0, NULL, NULL);
95     if (len == 0)
96         return NULL;
97
98     char *out = (char *)malloc (len);
99     if (likely(out != NULL))
100         WideCharToMultiByte (cp, 0, wide, -1, out, len, NULL, NULL);
101     free (wide);
102     return out;
103 }
104
105 VLC_USED VLC_MALLOC
106 static inline char *FromCodePage (unsigned cp, const char *mb)
107 {
108     int len = MultiByteToWideChar (cp, 0, mb, -1, NULL, 0);
109     if (len == 0)
110         return NULL;
111
112     wchar_t *wide = (wchar_t *)malloc (len * sizeof (wchar_t));
113     if (unlikely(wide == NULL))
114         return NULL;
115     MultiByteToWideChar (cp, 0, mb, -1, wide, len);
116
117     char *utf8 = FromWide (wide);
118     free (wide);
119     return utf8;
120 }
121
122 VLC_USED VLC_MALLOC
123 static inline char *FromANSI (const char *ansi)
124 {
125     return FromCodePage (GetACP (), ansi);
126 }
127
128 VLC_USED VLC_MALLOC
129 static inline char *ToANSI (const char *utf8)
130 {
131     return ToCodePage (GetACP (), utf8);
132 }
133
134 # ifdef UNICODE
135 #  define FromT FromWide
136 #  define ToT   ToWide
137 # else
138 #  define FromT FromANSI
139 #  define ToT   ToANSI
140 # endif
141 # define FromLocale    FromANSI
142 # define ToLocale      ToAnsi
143 # define LocaleFree(s) free((char *)(s))
144 # define FromLocaleDup FromANSI
145 # define ToLocaleDup   ToANSI
146 #endif
147
148 /**
149  * Converts a nul-terminated string from ISO-8859-1 to UTF-8.
150  */
151 static inline char *FromLatin1 (const char *latin)
152 {
153     char *str = (char *)malloc (2 * strlen (latin) + 1), *utf8 = str;
154     unsigned char c;
155
156     if (str == NULL)
157         return NULL;
158
159     while ((c = *(latin++)) != '\0')
160     {
161          if (c >= 0x80)
162          {
163              *(utf8++) = 0xC0 | (c >> 6);
164              *(utf8++) = 0x80 | (c & 0x3F);
165          }
166          else
167              *(utf8++) = c;
168     }
169     *(utf8++) = '\0';
170
171     utf8 = (char *)realloc (str, utf8 - str);
172     return utf8 ? utf8 : str;
173 }
174
175 VLC_API double us_strtod( const char *, char ** ) VLC_USED;
176 VLC_API float us_strtof( const char *, char ** ) VLC_USED;
177 VLC_API double us_atof( const char * ) VLC_USED;
178 VLC_API int us_vasprintf( char **, const char *, va_list );
179 VLC_API int us_asprintf( char **, const char *, ... ) VLC_USED;
180
181 #endif