charset.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:4k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * charset.c: Locale's character encoding stuff.
  3.  *****************************************************************************
  4.  * See also unicode.c for Unicode to locale conversion helpers.
  5.  *
  6.  * Copyright (C) 2003-2008 the VideoLAN team
  7.  *
  8.  * Authors: Christophe Massiot
  9.  *          Rémi Denis-Courmont
  10.  *
  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.
  15.  *
  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.
  20.  *
  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.  *****************************************************************************/
  25. #ifdef HAVE_CONFIG_H
  26. # include "config.h"
  27. #endif
  28. #include <vlc_common.h>
  29. #if !defined WIN32
  30. # include <locale.h>
  31. #else
  32. # include <windows.h>
  33. #endif
  34. #ifdef __APPLE__
  35. #   include <errno.h>
  36. #   include <string.h>
  37. #   include <xlocale.h>
  38. #endif
  39. #include "libvlc.h"
  40. #include <vlc_charset.h>
  41. char *vlc_fix_readdir( const char *psz_string )
  42. {
  43. #ifdef __APPLE__
  44.     vlc_iconv_t hd = vlc_iconv_open( "UTF-8", "UTF-8-MAC" );
  45.     if (hd != (vlc_iconv_t)(-1))
  46.     {
  47.         const char *psz_in = psz_string;
  48.         size_t i_in = strlen(psz_in);
  49.         size_t i_out = i_in * 2;
  50.         char *psz_utf8 = malloc(i_out + 1);
  51.         char *psz_out = psz_utf8;
  52.         size_t i_ret = vlc_iconv (hd, &psz_in, &i_in, &psz_out, &i_out);
  53.         vlc_iconv_close (hd);
  54.         if( i_ret == (size_t)(-1) || i_in )
  55.         {
  56.             free( psz_utf8 );
  57.             return strdup( psz_string );
  58.         }
  59.         *psz_out = '';
  60.         return psz_utf8;
  61.     }
  62. #endif
  63.     return strdup( psz_string );
  64. }
  65. /**
  66.  * us_strtod() has the same prototype as ANSI C strtod() but it uses the
  67.  * POSIX/C decimal format, regardless of the current numeric locale.
  68.  */
  69. double us_strtod( const char *str, char **end )
  70. {
  71.     locale_t loc = newlocale (LC_NUMERIC_MASK, "C", NULL);
  72.     locale_t oldloc = uselocale (loc);
  73.     double res = strtod (str, end);
  74.     if (loc != (locale_t)0)
  75.     {
  76.         uselocale (oldloc);
  77.         freelocale (loc);
  78.     }
  79.     return res;
  80. }
  81. /**
  82.  * us_strtof() has the same prototype as ANSI C strtof() but it uses the
  83.  * POSIX/C decimal format, regardless of the current numeric locale.
  84.  */
  85. float us_strtof( const char *str, char **end )
  86. {
  87.     locale_t loc = newlocale (LC_NUMERIC_MASK, "C", NULL);
  88.     locale_t oldloc = uselocale (loc);
  89.     float res = strtof (str, end);
  90.     if (loc != (locale_t)0)
  91.     {
  92.         uselocale (oldloc);
  93.         freelocale (loc);
  94.     }
  95.     return res;
  96. }
  97. /**
  98.  * us_atof() has the same prototype as ANSI C atof() but it expects a dot
  99.  * as decimal separator, regardless of the system locale.
  100.  */
  101. double us_atof( const char *str )
  102. {
  103.     return us_strtod( str, NULL );
  104. }
  105. /**
  106.  * us_asprintf() has the same prototype as asprintf(), but doesn't use
  107.  * the system locale.
  108.  */
  109. int us_asprintf( char **ret, const char *format, ... )
  110. {
  111.     va_list ap;
  112.     locale_t loc = newlocale( LC_NUMERIC_MASK, "C", NULL );
  113.     locale_t oldloc = uselocale( loc );
  114.     int i_rc;
  115.     va_start( ap, format );
  116.     i_rc = vasprintf( ret, format, ap );
  117.     va_end( ap );
  118.     if ( loc != (locale_t)0 )
  119.     {
  120.         uselocale( oldloc );
  121.         freelocale( loc );
  122.     }
  123.     return i_rc;
  124. }