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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * messages.c
  3.  *****************************************************************************
  4.  * Copyright (C) 2007-2008 the VideoLAN team
  5.  * $Id: 5d3dce06d5d5cc5fa8beb5b3169b975429993c65 $
  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 <lualib.h>     /* Lua libs */
  41. #include "../vlc.h"
  42. #include "../libs.h"
  43. /*****************************************************************************
  44.  * Messaging facilities
  45.  *****************************************************************************/
  46. static int vlclua_msg_dbg( lua_State *L )
  47. {
  48.     int i_top = lua_gettop( L );
  49.     vlc_object_t *p_this = vlclua_get_this( L );
  50.     int i;
  51.     for( i = 1; i <= i_top; i++ )
  52.         msg_Dbg( p_this, "%s", luaL_checkstring( L, 1 ) );
  53.     return 0;
  54. }
  55. static int vlclua_msg_warn( lua_State *L )
  56. {
  57.     int i_top = lua_gettop( L );
  58.     vlc_object_t *p_this = vlclua_get_this( L );
  59.     int i;
  60.     for( i = 1; i <= i_top; i++ )
  61.         msg_Warn( p_this, "%s", luaL_checkstring( L, i ) );
  62.     return 0;
  63. }
  64. static int vlclua_msg_err( lua_State *L )
  65. {
  66.     int i_top = lua_gettop( L );
  67.     vlc_object_t *p_this = vlclua_get_this( L );
  68.     int i;
  69.     for( i = 1; i <= i_top; i++ )
  70.         msg_Err( p_this, "%s", luaL_checkstring( L, i ) );
  71.     return 0;
  72. }
  73. static int vlclua_msg_info( lua_State *L )
  74. {
  75.     int i_top = lua_gettop( L );
  76.     vlc_object_t *p_this = vlclua_get_this( L );
  77.     int i;
  78.     for( i = 1; i <= i_top; i++ )
  79.         msg_Info( p_this, "%s", luaL_checkstring( L, i ) );
  80.     return 0;
  81. }
  82. /*****************************************************************************
  83.  *
  84.  *****************************************************************************/
  85. static const luaL_Reg vlclua_msg_reg[] = {
  86.     { "dbg", vlclua_msg_dbg },
  87.     { "warn", vlclua_msg_warn },
  88.     { "err", vlclua_msg_err },
  89.     { "info", vlclua_msg_info },
  90.     { NULL, NULL }
  91. };
  92. void luaopen_msg( lua_State *L )
  93. {
  94.     lua_newtable( L );
  95.     luaL_register( L, NULL, vlclua_msg_reg );
  96.     lua_setfield( L, -2, "msg" );
  97. }