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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * sd.c: Services discovery related functions
  3.  *****************************************************************************
  4.  * Copyright (C) 2007-2008 the VideoLAN team
  5.  * $Id: 491b682ae4b977e862869fc3834206dd1df58ab8 $
  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_services_discovery.h>
  34. #include <vlc_playlist.h>
  35. #include <lua.h>        /* Low level lua C API */
  36. #include <lauxlib.h>    /* Higher level C API */
  37. #include <lualib.h>     /* Lua libs */
  38. #include "../vlc.h"
  39. #include "../libs.h"
  40. #include "playlist.h"
  41. /*****************************************************************************
  42.  *
  43.  *****************************************************************************/
  44. static int vlclua_sd_get_services_names( lua_State *L )
  45. {
  46.     char **ppsz_longnames;
  47.     char **ppsz_names = vlc_sd_GetNames( &ppsz_longnames );
  48.     if( !ppsz_names )
  49.         return 0;
  50.     char **ppsz_longname = ppsz_longnames;
  51.     char **ppsz_name = ppsz_names;
  52.     lua_settop( L, 0 );
  53.     lua_newtable( L );
  54.     for( ; *ppsz_name; ppsz_name++,ppsz_longname++ )
  55.     {
  56.         lua_pushstring( L, *ppsz_longname );
  57.         lua_setfield( L, -2, *ppsz_name );
  58.         free( *ppsz_name );
  59.         free( *ppsz_longname );
  60.     }
  61.     free( ppsz_names );
  62.     free( ppsz_longnames );
  63.     return 1;
  64. }
  65. static int vlclua_sd_add( lua_State *L )
  66. {
  67.     const char *psz_sd = luaL_checkstring( L, 1 );
  68.     playlist_t *p_playlist = vlclua_get_playlist_internal( L );
  69.     int i_ret = playlist_ServicesDiscoveryAdd( p_playlist, psz_sd );
  70.     vlclua_release_playlist_internal( p_playlist );
  71.     return vlclua_push_ret( L, i_ret );
  72. }
  73. static int vlclua_sd_remove( lua_State *L )
  74. {
  75.     const char *psz_sd = luaL_checkstring( L, 1 );
  76.     playlist_t *p_playlist = vlclua_get_playlist_internal( L );
  77.     int i_ret = playlist_ServicesDiscoveryRemove( p_playlist, psz_sd );
  78.     vlclua_release_playlist_internal( p_playlist );
  79.     return vlclua_push_ret( L, i_ret );
  80. }
  81. static int vlclua_sd_is_loaded( lua_State *L )
  82. {
  83.     const char *psz_sd = luaL_checkstring( L, 1 );
  84.     playlist_t *p_playlist = vlclua_get_playlist_internal( L );
  85.     lua_pushboolean( L, playlist_IsServicesDiscoveryLoaded( p_playlist, psz_sd ));
  86.     vlclua_release_playlist_internal( p_playlist );
  87.     return 1;
  88. }
  89. /*****************************************************************************
  90.  *
  91.  *****************************************************************************/
  92. static const luaL_Reg vlclua_sd_reg[] = {
  93.     { "get_services_names", vlclua_sd_get_services_names },
  94.     { "add", vlclua_sd_add },
  95.     { "remove", vlclua_sd_remove },
  96.     { "is_loaded", vlclua_sd_is_loaded },
  97.     { NULL, NULL }
  98. };
  99. void luaopen_sd( lua_State *L )
  100. {
  101.     lua_newtable( L );
  102.     luaL_register( L, NULL, vlclua_sd_reg );
  103.     lua_setfield( L, -2, "sd" );
  104. }