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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * charset.h: Unicode UTF-8 wrappers function
  3.  *****************************************************************************
  4.  * Copyright (C) 2003-2005 the VideoLAN team
  5.  * Copyright © 2005-2006 Rémi Denis-Courmont
  6.  * $Id: b8a9d4e7b56f0ccb1a653e107a38735b97d4f396 $
  7.  *
  8.  * Author: Rémi Denis-Courmont <rem # videolan,org>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 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 General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. #ifndef VLC_CHARSET_H
  25. #define VLC_CHARSET_H 1
  26. /**
  27.  * file
  28.  * This files handles locale conversions in vlc
  29.  */
  30. #include <stdarg.h>
  31. #include <sys/types.h>
  32. #include <dirent.h>
  33. VLC_EXPORT( void, LocaleFree, ( const char * ) );
  34. VLC_EXPORT( char *, FromLocale, ( const char * ) LIBVLC_USED );
  35. VLC_EXPORT( char *, FromLocaleDup, ( const char * ) LIBVLC_USED );
  36. VLC_EXPORT( char *, ToLocale, ( const char * ) LIBVLC_USED );
  37. VLC_EXPORT( char *, ToLocaleDup, ( const char * ) LIBVLC_USED );
  38. /* TODO: move all of this to "vlc_fs.h" or something like that */
  39. VLC_EXPORT( int, utf8_open, ( const char *filename, int flags, mode_t mode ) LIBVLC_USED );
  40. VLC_EXPORT( FILE *, utf8_fopen, ( const char *filename, const char *mode ) LIBVLC_USED );
  41. VLC_EXPORT( DIR *, utf8_opendir, ( const char *dirname ) LIBVLC_USED );
  42. VLC_EXPORT( char *, utf8_readdir, ( DIR *dir ) LIBVLC_USED );
  43. VLC_EXPORT( int, utf8_loaddir, ( DIR *dir, char ***namelist, int (*select)( const char * ), int (*compar)( const char **, const char ** ) ) );
  44. VLC_EXPORT( int, utf8_scandir, ( const char *dirname, char ***namelist, int (*select)( const char * ), int (*compar)( const char **, const char ** ) ) );
  45. VLC_EXPORT( int, utf8_mkdir, ( const char *filename, mode_t mode ) );
  46. VLC_EXPORT( int, utf8_unlink, ( const char *filename ) );
  47. int utf8_rename( const char *, const char * );
  48. #if defined( WIN32 ) && !defined( UNDER_CE )
  49. # define stat _stati64
  50. #endif
  51. VLC_EXPORT( int, utf8_stat, ( const char *filename, struct stat *buf ) );
  52. VLC_EXPORT( int, utf8_lstat, ( const char *filename, struct stat *buf ) );
  53. VLC_EXPORT( int, utf8_vfprintf, ( FILE *stream, const char *fmt, va_list ap ) );
  54. VLC_EXPORT( int, utf8_fprintf, ( FILE *, const char *, ... ) LIBVLC_FORMAT( 2, 3 ) );
  55. VLC_EXPORT( int, utf8_mkstemp, ( char * ) );
  56. VLC_EXPORT( char *, EnsureUTF8, ( char * ) );
  57. VLC_EXPORT( const char *, IsUTF8, ( const char * ) LIBVLC_USED );
  58. #ifdef WIN32
  59. LIBVLC_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.     char *out = (char *)malloc (len);
  66.     if (out)
  67.         WideCharToMultiByte (CP_UTF8, 0, wide, -1, out, len, NULL, NULL);
  68.     return out;
  69. }
  70. #endif
  71. /**
  72.  * Converts a nul-terminated string from ISO-8859-1 to UTF-8.
  73.  */
  74. static inline char *FromLatin1 (const char *latin)
  75. {
  76.     char *str = (char *)malloc (2 * strlen (latin) + 1), *utf8 = str;
  77.     unsigned char c;
  78.     if (str == NULL)
  79.         return NULL;
  80.     while ((c = *(latin++)) != '')
  81.     {
  82.          if (c >= 0x80)
  83.          {
  84.              *(utf8++) = 0xC0 | (c >> 6);
  85.              *(utf8++) = 0x80 | (c & 0x3F);
  86.          }
  87.          else
  88.              *(utf8++) = c;
  89.     }
  90.     *(utf8++) = '';
  91.     utf8 = (char *)realloc (str, utf8 - str);
  92.     return utf8 ? utf8 : str;
  93. }
  94. VLC_EXPORT( const char *, GetFallbackEncoding, ( void ) LIBVLC_USED );
  95. VLC_EXPORT( double, us_strtod, ( const char *, char ** ) LIBVLC_USED );
  96. VLC_EXPORT( float, us_strtof, ( const char *, char ** ) LIBVLC_USED );
  97. VLC_EXPORT( double, us_atof, ( const char * ) LIBVLC_USED );
  98. VLC_EXPORT( int, us_asprintf, ( char **, const char *, ... ) LIBVLC_USED );
  99. #endif