]> git.sesse.net Git - vlc/blob - modules/misc/lua/libs/sd.c
Unused variable
[vlc] / modules / misc / lua / libs / sd.c
1 /*****************************************************************************
2  * sd.c: Services discovery related functions
3  *****************************************************************************
4  * Copyright (C) 2007-2008 the VideoLAN team
5  * $Id$
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 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #ifndef  _GNU_SOURCE
28 #   define  _GNU_SOURCE
29 #endif
30
31 #ifdef HAVE_CONFIG_H
32 # include "config.h"
33 #endif
34
35 #include <vlc_common.h>
36 #include <vlc_services_discovery.h>
37 #include <vlc_playlist.h>
38
39 #include <lua.h>        /* Low level lua C API */
40 #include <lauxlib.h>    /* Higher level C API */
41 #include <lualib.h>     /* Lua libs */
42
43 #include "../vlc.h"
44 #include "../libs.h"
45 #include "playlist.h"
46
47 /*****************************************************************************
48  *
49  *****************************************************************************/
50 static int vlclua_sd_get_services_names( lua_State *L )
51 {
52     char **ppsz_longnames;
53     char **ppsz_names = vlc_sd_GetNames( &ppsz_longnames );
54     if( !ppsz_names )
55         return 0;
56
57     char **ppsz_longname = ppsz_longnames;
58     char **ppsz_name = ppsz_names;
59     lua_settop( L, 0 );
60     lua_newtable( L );
61     for( ; *ppsz_name; ppsz_name++,ppsz_longname++ )
62     {
63         lua_pushstring( L, *ppsz_longname );
64         lua_setfield( L, -2, *ppsz_name );
65         free( *ppsz_name );
66         free( *ppsz_longname );
67     }
68     free( ppsz_names );
69     free( ppsz_longnames );
70     return 1;
71 }
72
73 static int vlclua_sd_add( 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_ServicesDiscoveryAdd( p_playlist, psz_sd );
78     vlclua_release_playlist_internal( p_playlist );
79     return vlclua_push_ret( L, i_ret );
80 }
81
82 static int vlclua_sd_remove( lua_State *L )
83 {
84     const char *psz_sd = luaL_checkstring( L, 1 );
85     playlist_t *p_playlist = vlclua_get_playlist_internal( L );
86     int i_ret = playlist_ServicesDiscoveryRemove( p_playlist, psz_sd );
87     vlclua_release_playlist_internal( p_playlist );
88     return vlclua_push_ret( L, i_ret );
89 }
90
91 static int vlclua_sd_is_loaded( lua_State *L )
92 {
93     const char *psz_sd = luaL_checkstring( L, 1 );
94     playlist_t *p_playlist = vlclua_get_playlist_internal( L );
95     lua_pushboolean( L, playlist_IsServicesDiscoveryLoaded( p_playlist, psz_sd ));
96     vlclua_release_playlist_internal( p_playlist );
97     return 1;
98 }
99
100 /*****************************************************************************
101  *
102  *****************************************************************************/
103 static const luaL_Reg vlclua_sd_reg[] = {
104     { "get_services_names", vlclua_sd_get_services_names },
105     { "add", vlclua_sd_add },
106     { "remove", vlclua_sd_remove },
107     { "is_loaded", vlclua_sd_is_loaded },
108     { NULL, NULL }
109 };
110
111 void luaopen_sd( lua_State *L )
112 {
113     lua_newtable( L );
114     luaL_register( L, NULL, vlclua_sd_reg );
115     lua_setfield( L, -2, "sd" );
116 }