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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * vlm.c: Generic lua VLM wrapper
  3.  *****************************************************************************
  4.  * Copyright (C) 2007-2008 the VideoLAN team
  5.  * $Id: 32f448e024fec9daf2abc836c1ca3380b340173d $
  6.  *
  7.  * Authors: Antoine Cellerier <dionoea at videolan tod org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #ifndef  _GNU_SOURCE
  27. #   define  _GNU_SOURCE
  28. #endif
  29. #ifdef HAVE_CONFIG_H
  30. # include "config.h"
  31. #endif
  32. #include <vlc_common.h>
  33. #include <vlc_vlm.h>
  34. #include <lua.h>        /* Low level lua C API */
  35. #include <lauxlib.h>    /* Higher level C API */
  36. #include "../vlc.h"
  37. #include "../libs.h"
  38. /*****************************************************************************
  39.  *
  40.  *****************************************************************************/
  41. #ifdef ENABLE_VLM
  42. static int vlclua_vlm_delete( lua_State * );
  43. static int vlclua_vlm_execute_command( lua_State * );
  44. static const luaL_Reg vlclua_vlm_reg[] = {
  45.     { "execute_command", vlclua_vlm_execute_command },
  46.     { NULL, NULL }
  47. };
  48. static int vlclua_vlm_new( lua_State *L )
  49. {
  50.     vlc_object_t *p_this = vlclua_get_this( L );
  51.     vlm_t *p_vlm = vlm_New( p_this );
  52.     if( !p_vlm )
  53.         return luaL_error( L, "Cannot start VLM." );
  54.     vlm_t **pp_vlm = lua_newuserdata( L, sizeof( vlm_t * ) );
  55.     *pp_vlm = p_vlm;
  56.     if( luaL_newmetatable( L, "vlm" ) )
  57.     {
  58.         lua_newtable( L );
  59.         luaL_register( L, NULL, vlclua_vlm_reg );
  60.         lua_setfield( L, -2, "__index" );
  61.         lua_pushcfunction( L, vlclua_vlm_delete );
  62.         lua_setfield( L, -2, "__gc" );
  63.     }
  64.     lua_setmetatable( L, -2 );
  65.     return 1;
  66. }
  67. static int vlclua_vlm_delete( lua_State *L )
  68. {
  69.     vlm_t **pp_vlm = (vlm_t**)luaL_checkudata( L, 1, "vlm" );
  70.     vlm_Delete( *pp_vlm );
  71.     return 0;
  72. }
  73. static void push_message( lua_State *L, vlm_message_t *message )
  74. {
  75.     lua_createtable( L, 0, 2 );
  76.     lua_pushstring( L, message->psz_name );
  77.     lua_setfield( L, -2, "name" );
  78.     if( message->i_child > 0 )
  79.     {
  80.         int i;
  81.         lua_createtable( L, message->i_child, 0 );
  82.         for( i = 0; i < message->i_child; i++ )
  83.         {
  84.             lua_pushinteger( L, i+1 );
  85.             push_message( L, message->child[i] );
  86.             lua_settable( L, -3 );
  87.         }
  88.         lua_setfield( L, -2, "children" );
  89.     }
  90.     else
  91.     {
  92.         lua_pushstring( L, message->psz_value );
  93.         lua_setfield( L, -2, "value" );
  94.     }
  95. }
  96. static int vlclua_vlm_execute_command( lua_State *L )
  97. {
  98.     vlm_t **pp_vlm = (vlm_t**)luaL_checkudata( L, 1, "vlm" );
  99.     const char *psz_command = luaL_checkstring( L, 2 );
  100.     vlm_message_t *message;
  101.     int i_ret;
  102.     i_ret = vlm_ExecuteCommand( *pp_vlm, psz_command, &message );
  103.     lua_settop( L, 0 );
  104.     push_message( L, message );
  105.     vlm_MessageDelete( message );
  106.     return 1 + vlclua_push_ret( L, i_ret );
  107. }
  108. #else
  109. static int vlclua_vlm_new( lua_State *L )
  110. {
  111.     return luaL_error( L, "Cannot start VLM because it was disabled when compiling VLC." );
  112. }
  113. #endif
  114. /*****************************************************************************
  115.  *
  116.  *****************************************************************************/
  117. void luaopen_vlm( lua_State *L )
  118. {
  119.     lua_pushcfunction( L, vlclua_vlm_new );
  120.     lua_setfield( L, -2, "vlm" );
  121. }