qt: playlist: use item title if available
[vlc.git] / include / vlc_charset.h
blob0ec1734dc902f3d3c13e567a9dbda18437e8c8b1
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
7 * Author: Rémi Denis-Courmont
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU Lesser General Public License as published by
11 * the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with this program; if not, write to the Free Software Foundation,
21 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 #ifndef VLC_CHARSET_H
25 #define VLC_CHARSET_H 1
27 /**
28 * \file vlc_charset.h
29 * \ingroup charset
30 * \defgroup charset Character sets
31 * \ingroup strings
32 * @{
35 /**
36 * Decodes a code point from UTF-8.
38 * Converts the first character in a UTF-8 sequence into a Unicode code point.
40 * \param str an UTF-8 bytes sequence [IN]
41 * \param pwc address of a location to store the code point [OUT]
43 * \return the number of bytes occupied by the decoded code point
45 * \retval (size_t)-1 not a valid UTF-8 sequence
46 * \retval 0 null character (i.e. str points to an empty string)
47 * \retval 1 (non-null) ASCII character
48 * \retval 2-4 non-ASCII character
50 VLC_API size_t vlc_towc(const char *str, uint32_t *restrict pwc);
52 /**
53 * Checks UTF-8 validity.
55 * Checks whether a null-terminated string is a valid UTF-8 bytes sequence.
57 * \param str string to check
59 * \retval str the string is a valid null-terminated UTF-8 sequence
60 * \retval NULL the string is not an UTF-8 sequence
62 VLC_USED static inline const char *IsUTF8(const char *str)
64 size_t n;
65 uint32_t cp;
67 while ((n = vlc_towc(str, &cp)) != 0)
68 if (likely(n != (size_t)-1))
69 str += n;
70 else
71 return NULL;
72 return str;
75 /**
76 * Checks ASCII validity.
78 * Checks whether a null-terminated string is a valid ASCII bytes sequence
79 * (non-printable ASCII characters 1-31 are permitted).
81 * \param str string to check
83 * \retval str the string is a valid null-terminated ASCII sequence
84 * \retval NULL the string is not an ASCII sequence
86 VLC_USED static inline const char *IsASCII(const char *str)
88 unsigned char c;
90 for (const char *p = str; (c = *p) != '\0'; p++)
91 if (c >= 0x80)
92 return NULL;
93 return str;
96 /**
97 * Removes non-UTF-8 sequences.
99 * Replaces invalid or <i>over-long</i> UTF-8 bytes sequences within a
100 * null-terminated string with question marks. This is so that the string can
101 * be printed at least partially.
103 * \warning Do not use this were correctness is critical. use IsUTF8() and
104 * handle the error case instead. This function is mainly for display or debug.
106 * \note Converting from Latin-1 to UTF-8 in place is not possible (the string
107 * size would be increased). So it is not attempted even if it would otherwise
108 * be less disruptive.
110 * \retval str the string is a valid null-terminated UTF-8 sequence
111 * (i.e. no changes were made)
112 * \retval NULL the string is not an UTF-8 sequence
114 static inline char *EnsureUTF8(char *str)
116 char *ret = str;
117 size_t n;
118 uint32_t cp;
120 while ((n = vlc_towc(str, &cp)) != 0)
121 if (likely(n != (size_t)-1))
122 str += n;
123 else
125 *str++ = '?';
126 ret = NULL;
128 return ret;
132 * \defgroup iconv iconv wrappers
134 * (defined in src/extras/libc.c)
135 * @{
138 #define VLC_ICONV_ERR ((size_t) -1)
139 typedef void *vlc_iconv_t;
140 VLC_API vlc_iconv_t vlc_iconv_open( const char *, const char * ) VLC_USED;
141 VLC_API size_t vlc_iconv( vlc_iconv_t, const char **, size_t *, char **, size_t * ) VLC_USED;
142 VLC_API int vlc_iconv_close( vlc_iconv_t );
144 /** @} */
146 #include <stdarg.h>
148 VLC_API int utf8_vfprintf( FILE *stream, const char *fmt, va_list ap );
149 VLC_API int utf8_fprintf( FILE *, const char *, ... ) VLC_FORMAT( 2, 3 );
150 VLC_API char * vlc_strcasestr(const char *, const char *) VLC_USED;
152 VLC_API char * FromCharset( const char *charset, const void *data, size_t data_size ) VLC_USED;
153 VLC_API void * ToCharset( const char *charset, const char *in, size_t *outsize ) VLC_USED;
155 #ifdef __APPLE__
156 # include <CoreFoundation/CoreFoundation.h>
158 /* Obtains a copy of the contents of a CFString in specified encoding.
159 * Returns char* (must be freed by caller) or NULL on failure.
161 VLC_USED static inline char *FromCFString(const CFStringRef cfString,
162 const CFStringEncoding cfStringEncoding)
164 // Try the quick way to obtain the buffer
165 const char *tmpBuffer = CFStringGetCStringPtr(cfString, cfStringEncoding);
167 if (tmpBuffer != NULL) {
168 return strdup(tmpBuffer);
171 // The quick way did not work, try the long way
172 CFIndex length = CFStringGetLength(cfString);
173 CFIndex maxSize =
174 CFStringGetMaximumSizeForEncoding(length, cfStringEncoding);
176 // If result would exceed LONG_MAX, kCFNotFound is returned
177 if (unlikely(maxSize == kCFNotFound)) {
178 return NULL;
181 // Account for the null terminator
182 maxSize++;
184 char *buffer = (char *)malloc(maxSize);
186 if (unlikely(buffer == NULL)) {
187 return NULL;
190 // Copy CFString in requested encoding to buffer
191 Boolean success = CFStringGetCString(cfString, buffer, maxSize, cfStringEncoding);
193 if (!success)
194 FREENULL(buffer);
195 return buffer;
197 #endif
199 #ifdef _WIN32
200 VLC_USED
201 static inline char *FromWide (const wchar_t *wide)
203 size_t len = WideCharToMultiByte (CP_UTF8, 0, wide, -1, NULL, 0, NULL, NULL);
204 if (len == 0)
205 return NULL;
207 char *out = (char *)malloc (len);
209 if (likely(out))
210 WideCharToMultiByte (CP_UTF8, 0, wide, -1, out, len, NULL, NULL);
211 return out;
214 VLC_USED
215 static inline wchar_t *ToWide (const char *utf8)
217 int len = MultiByteToWideChar (CP_UTF8, 0, utf8, -1, NULL, 0);
218 if (len == 0)
219 return NULL;
221 wchar_t *out = (wchar_t *)malloc (len * sizeof (wchar_t));
223 if (likely(out))
224 MultiByteToWideChar (CP_UTF8, 0, utf8, -1, out, len);
225 return out;
228 VLC_USED VLC_MALLOC
229 static inline char *ToCodePage (unsigned cp, const char *utf8)
231 wchar_t *wide = ToWide (utf8);
232 if (wide == NULL)
233 return NULL;
235 size_t len = WideCharToMultiByte (cp, 0, wide, -1, NULL, 0, NULL, NULL);
236 if (len == 0) {
237 free(wide);
238 return NULL;
241 char *out = (char *)malloc (len);
242 if (likely(out != NULL))
243 WideCharToMultiByte (cp, 0, wide, -1, out, len, NULL, NULL);
244 free (wide);
245 return out;
248 VLC_USED VLC_MALLOC
249 static inline char *FromCodePage (unsigned cp, const char *mb)
251 int len = MultiByteToWideChar (cp, 0, mb, -1, NULL, 0);
252 if (len == 0)
253 return NULL;
255 wchar_t *wide = (wchar_t *)malloc (len * sizeof (wchar_t));
256 if (unlikely(wide == NULL))
257 return NULL;
258 MultiByteToWideChar (cp, 0, mb, -1, wide, len);
260 char *utf8 = FromWide (wide);
261 free (wide);
262 return utf8;
265 VLC_USED VLC_MALLOC
266 static inline char *FromANSI (const char *ansi)
268 return FromCodePage (GetACP (), ansi);
271 VLC_USED VLC_MALLOC
272 static inline char *ToANSI (const char *utf8)
274 return ToCodePage (GetACP (), utf8);
277 # define FromLocale FromANSI
278 # define ToLocale ToANSI
279 # define LocaleFree(s) free((char *)(s))
280 # define FromLocaleDup FromANSI
281 # define ToLocaleDup ToANSI
283 #elif defined(__OS2__)
285 VLC_USED static inline char *FromLocale (const char *locale)
287 return locale ? FromCharset ((char *)"", locale, strlen(locale)) : NULL;
290 VLC_USED static inline char *ToLocale (const char *utf8)
292 size_t outsize;
293 return utf8 ? (char *)ToCharset ("", utf8, &outsize) : NULL;
296 VLC_USED static inline void LocaleFree (const char *str)
298 free ((char *)str);
301 VLC_USED static inline char *FromLocaleDup (const char *locale)
303 return FromCharset ("", locale, strlen(locale));
306 VLC_USED static inline char *ToLocaleDup (const char *utf8)
308 size_t outsize;
309 return (char *)ToCharset ("", utf8, &outsize);
312 #else
314 # define FromLocale(l) (l)
315 # define ToLocale(u) (u)
316 # define LocaleFree(s) ((void)(s))
317 # define FromLocaleDup strdup
318 # define ToLocaleDup strdup
319 #endif
322 * Converts a nul-terminated string from ISO-8859-1 to UTF-8.
324 static inline char *FromLatin1 (const char *latin)
326 char *str = (char *)malloc (2 * strlen (latin) + 1), *utf8 = str;
327 unsigned char c;
329 if (str == NULL)
330 return NULL;
332 while ((c = *(latin++)) != '\0')
334 if (c >= 0x80)
336 *(utf8++) = 0xC0 | (c >> 6);
337 *(utf8++) = 0x80 | (c & 0x3F);
339 else
340 *(utf8++) = c;
342 *(utf8++) = '\0';
344 utf8 = (char *)realloc (str, utf8 - str);
345 return utf8 ? utf8 : str;
349 * \defgroup c_locale C/POSIX locale functions
350 * @{
352 VLC_API double us_strtod( const char *, char ** ) VLC_USED;
353 VLC_API float us_strtof( const char *, char ** ) VLC_USED;
354 VLC_API double us_atof( const char * ) VLC_USED;
355 VLC_API int us_vasprintf( char **, const char *, va_list );
356 VLC_API int us_asprintf( char **, const char *, ... ) VLC_USED;
357 /** @} */
358 /** @} */
360 #endif