qt4: improve code readability.
[vlc/asuraparaju-public.git] / src / text / charset.c
blob07b814ee09a9a372195fb1f915fff25471d20d9a
1 /*****************************************************************************
2 * charset.c: Locale's character encoding stuff.
3 *****************************************************************************
4 * See also unicode.c for Unicode to locale conversion helpers.
6 * Copyright (C) 2003-2008 the VideoLAN team
8 * Authors: Christophe Massiot
9 * RĂ©mi Denis-Courmont
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24 *****************************************************************************/
26 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
30 #include <vlc_common.h>
32 #if !defined WIN32
33 # include <locale.h>
34 #else
35 # include <windows.h>
36 #endif
38 #ifdef __APPLE__
39 # include <string.h>
40 # include <xlocale.h>
41 #endif
43 #include "libvlc.h"
44 #include <vlc_charset.h>
46 char *vlc_fix_readdir( const char *psz_string )
48 #ifdef __APPLE__
49 vlc_iconv_t hd = vlc_iconv_open( "UTF-8", "UTF-8-MAC" );
51 if (hd != (vlc_iconv_t)(-1))
53 const char *psz_in = psz_string;
54 size_t i_in = strlen(psz_in);
55 size_t i_out = i_in * 2;
56 char *psz_utf8 = malloc(i_out + 1);
57 char *psz_out = psz_utf8;
59 size_t i_ret = vlc_iconv (hd, &psz_in, &i_in, &psz_out, &i_out);
60 vlc_iconv_close (hd);
61 if( i_ret == (size_t)(-1) || i_in )
63 free( psz_utf8 );
64 return strdup( psz_string );
67 *psz_out = '\0';
68 return psz_utf8;
70 #endif
71 return strdup( psz_string );
75 /**
76 * us_strtod() has the same prototype as ANSI C strtod() but it uses the
77 * POSIX/C decimal format, regardless of the current numeric locale.
79 double us_strtod( const char *str, char **end )
81 locale_t loc = newlocale (LC_NUMERIC_MASK, "C", NULL);
82 locale_t oldloc = uselocale (loc);
83 double res = strtod (str, end);
85 if (loc != (locale_t)0)
87 uselocale (oldloc);
88 freelocale (loc);
90 return res;
94 /**
95 * us_strtof() has the same prototype as ANSI C strtof() but it uses the
96 * POSIX/C decimal format, regardless of the current numeric locale.
98 float us_strtof( const char *str, char **end )
100 locale_t loc = newlocale (LC_NUMERIC_MASK, "C", NULL);
101 locale_t oldloc = uselocale (loc);
102 float res = strtof (str, end);
104 if (loc != (locale_t)0)
106 uselocale (oldloc);
107 freelocale (loc);
109 return res;
114 * us_atof() has the same prototype as ANSI C atof() but it expects a dot
115 * as decimal separator, regardless of the system locale.
117 double us_atof( const char *str )
119 return us_strtod( str, NULL );
124 * us_asprintf() has the same prototype as asprintf(), but doesn't use
125 * the system locale.
127 int us_asprintf( char **ret, const char *format, ... )
129 va_list ap;
130 locale_t loc = newlocale( LC_NUMERIC_MASK, "C", NULL );
131 locale_t oldloc = uselocale( loc );
132 int i_rc;
134 va_start( ap, format );
135 i_rc = vasprintf( ret, format, ap );
136 va_end( ap );
138 if ( loc != (locale_t)0 )
140 uselocale( oldloc );
141 freelocale( loc );
144 return i_rc;