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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * stream.c: stream functions
  3.  *****************************************************************************
  4.  * Copyright (C) 2007-2008 the VideoLAN team
  5.  * $Id: 49e48b3c2dffd64b57222bb684f421051d0bfdde $
  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.  * Stream handling
  44.  *****************************************************************************/
  45. static int vlclua_stream_read( lua_State * );
  46. static int vlclua_stream_readline( lua_State * );
  47. static int vlclua_stream_delete( lua_State * );
  48. static const luaL_Reg vlclua_stream_reg[] = {
  49.     { "read", vlclua_stream_read },
  50.     { "readline", vlclua_stream_readline },
  51.     { NULL, NULL }
  52. };
  53. static int vlclua_stream_new( lua_State *L )
  54. {
  55.     vlc_object_t * p_this = vlclua_get_this( L );
  56.     stream_t * p_stream;
  57.     const char * psz_url;
  58.     psz_url = luaL_checkstring( L, 1 );
  59.     p_stream = stream_UrlNew( p_this, psz_url );
  60.     if( !p_stream )
  61.         return luaL_error( L, "Error when opening url: `%s'", psz_url );
  62.     stream_t **pp_stream = lua_newuserdata( L, sizeof( stream_t * ) );
  63.     *pp_stream = p_stream;
  64.     if( luaL_newmetatable( L, "stream" ) )
  65.     {
  66.         lua_newtable( L );
  67.         luaL_register( L, NULL, vlclua_stream_reg );
  68.         lua_setfield( L, -2, "__index" );
  69.         lua_pushcfunction( L, vlclua_stream_delete );
  70.         lua_setfield( L, -2, "__gc" );
  71.     }
  72.     lua_setmetatable( L, -2 );
  73.     return 1;
  74. }
  75. static int vlclua_stream_read( lua_State *L )
  76. {
  77.     int i_read;
  78.     stream_t **pp_stream = (stream_t **)luaL_checkudata( L, 1, "stream" );
  79.     int n = luaL_checkint( L, 2 );
  80.     uint8_t *p_read = malloc( n );
  81.     if( !p_read ) return vlclua_error( L );
  82.     i_read = stream_Read( *pp_stream, p_read, n );
  83.     lua_pushlstring( L, (const char *)p_read, i_read );
  84.     free( p_read );
  85.     return 1;
  86. }
  87. static int vlclua_stream_readline( lua_State *L )
  88. {
  89.     stream_t **pp_stream = (stream_t **)luaL_checkudata( L, 1, "stream" );
  90.     char *psz_line = stream_ReadLine( *pp_stream );
  91.     if( psz_line )
  92.     {
  93.         lua_pushstring( L, psz_line );
  94.         free( psz_line );
  95.     }
  96.     else
  97.         lua_pushnil( L );
  98.     return 1;
  99. }
  100. static int vlclua_stream_delete( lua_State *L )
  101. {
  102.     stream_t **pp_stream = (stream_t **)luaL_checkudata( L, 1, "stream" );
  103.     stream_Delete( *pp_stream );
  104.     return 0;
  105. }
  106. /*****************************************************************************
  107.  *
  108.  *****************************************************************************/
  109. void luaopen_stream( lua_State *L )
  110. {
  111.     lua_pushcfunction( L, vlclua_stream_new );
  112.     lua_setfield( L, -2, "stream" );
  113. }