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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * strings.c
  3.  *****************************************************************************
  4.  * Copyright (C) 2007-2008 the VideoLAN team
  5.  * $Id: b9a56a48414e5870ecfcbfcd0ddae296041e5aa4 $
  6.  *
  7.  * Authors: Antoine Cellerier <dionoea at videolan tod org>
  8.  *          Pierre d'Herbemont <pdherbemont # 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. /*****************************************************************************
  25.  * Preamble
  26.  *****************************************************************************/
  27. #ifndef  _GNU_SOURCE
  28. #   define  _GNU_SOURCE
  29. #endif
  30. #ifdef HAVE_CONFIG_H
  31. # include "config.h"
  32. #endif
  33. #include <vlc_common.h>
  34. #include <vlc_plugin.h>
  35. #include <vlc_meta.h>
  36. #include <vlc_charset.h>
  37. #include <vlc_aout.h>
  38. #include <lua.h>        /* Low level lua C API */
  39. #include <lauxlib.h>    /* Higher level C API */
  40. #include "../vlc.h"
  41. #include "../libs.h"
  42. /*****************************************************************************
  43.  * String transformations
  44.  *****************************************************************************/
  45. static int vlclua_decode_uri( lua_State *L )
  46. {
  47.     int i_top = lua_gettop( L );
  48.     int i;
  49.     for( i = 1; i <= i_top; i++ )
  50.     {
  51.         const char *psz_cstring = luaL_checkstring( L, 1 );
  52.         char *psz_string = strdup( psz_cstring );
  53.         lua_remove( L, 1 ); /* remove elements to prevent being limited by
  54.                              * the stack's size (this function will work with
  55.                              * up to (stack size - 1) arguments */
  56.         decode_URI( psz_string );
  57.         lua_pushstring( L, psz_string );
  58.         free( psz_string );
  59.     }
  60.     return i_top;
  61. }
  62. static int vlclua_encode_uri_component( lua_State *L )
  63. {
  64.     int i_top = lua_gettop( L );
  65.     int i;
  66.     for( i = 1; i <= i_top; i++ )
  67.     {
  68.         const char *psz_cstring = luaL_checkstring( L, 1 );
  69.         char *psz_string = encode_URI_component( psz_cstring );
  70.         lua_remove( L,1 );
  71.         lua_pushstring( L, psz_string );
  72.         free( psz_string );
  73.     }
  74.     return i_top;
  75. }
  76. static int vlclua_resolve_xml_special_chars( lua_State *L )
  77. {
  78.     int i_top = lua_gettop( L );
  79.     int i;
  80.     for( i = 1; i <= i_top; i++ )
  81.     {
  82.         const char *psz_cstring = luaL_checkstring( L, 1 );
  83.         char *psz_string = strdup( psz_cstring );
  84.         lua_remove( L, 1 ); /* remove elements to prevent being limited by
  85.                              * the stack's size (this function will work with
  86.                              * up to (stack size - 1) arguments */
  87.         resolve_xml_special_chars( psz_string );
  88.         lua_pushstring( L, psz_string );
  89.         free( psz_string );
  90.     }
  91.     return i_top;
  92. }
  93. static int vlclua_convert_xml_special_chars( lua_State *L )
  94. {
  95.     int i_top = lua_gettop( L );
  96.     int i;
  97.     for( i = 1; i <= i_top; i++ )
  98.     {
  99.         char *psz_string = convert_xml_special_chars( luaL_checkstring(L,1) );
  100.         lua_remove( L, 1 );
  101.         lua_pushstring( L, psz_string );
  102.         free( psz_string );
  103.     }
  104.     return i_top;
  105. }
  106. /*****************************************************************************
  107.  *
  108.  *****************************************************************************/
  109. static const luaL_Reg vlclua_strings_reg[] = {
  110.     { "decode_uri", vlclua_decode_uri },
  111.     { "encode_uri_component", vlclua_encode_uri_component },
  112.     { "resolve_xml_special_chars", vlclua_resolve_xml_special_chars },
  113.     { "convert_xml_special_chars", vlclua_convert_xml_special_chars },
  114.     { NULL, NULL }
  115. };
  116. void luaopen_strings( lua_State *L )
  117. {
  118.     lua_newtable( L );
  119.     luaL_register( L, NULL, vlclua_strings_reg );
  120.     lua_setfield( L, -2, "strings" );
  121. }