]> git.sesse.net Git - vlc/blob - modules/misc/lua/sd.c
8c48aa7b4558a31fe0fbe8af40313d2ebf704754
[vlc] / modules / misc / lua / sd.c
1 /*****************************************************************************
2  * sd.c: Services discovery related functions
3  *****************************************************************************
4  * Copyright (C) 2007 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/vlc.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
45 /*****************************************************************************
46  *
47  *****************************************************************************/
48 int vlclua_sd_get_services_names( lua_State *L )
49 {
50     vlc_object_t *p_this = vlclua_get_this( L );
51     char **ppsz_longnames;
52     char **ppsz_names = services_discovery_GetServicesNames( p_this, &ppsz_longnames );
53     char **ppsz_longname = ppsz_longnames;
54     char **ppsz_name = ppsz_names;
55     lua_settop( L, 0 );
56     lua_newtable( L );
57     for( ; *ppsz_name; ppsz_name++,ppsz_longname++ )
58     {
59         lua_pushstring( L, *ppsz_longname );
60         lua_setfield( L, -2, *ppsz_name );
61         free( *ppsz_name );
62         free( *ppsz_longname );
63     }
64     free( ppsz_names );
65     free( ppsz_longnames );
66     return 1;
67 }
68
69 int vlclua_sd_add( lua_State *L )
70 {
71     const char *psz_sd = luaL_checkstring( L, 1 );
72     playlist_t *p_playlist = vlclua_get_playlist_internal( L );
73     int i_ret = playlist_ServicesDiscoveryAdd( p_playlist, psz_sd );
74     vlc_object_release( p_playlist );
75     return vlclua_push_ret( L, i_ret );
76 }
77
78 int vlclua_sd_remove( lua_State *L )
79 {
80     const char *psz_sd = luaL_checkstring( L, 1 );
81     playlist_t *p_playlist = vlclua_get_playlist_internal( L );
82     int i_ret = playlist_ServicesDiscoveryRemove( p_playlist, psz_sd );
83     vlc_object_release( p_playlist );
84     return vlclua_push_ret( L, i_ret );
85 }
86
87 int vlclua_sd_is_loaded( lua_State *L )
88 {
89     const char *psz_sd = luaL_checkstring( L, 1 );
90     playlist_t *p_playlist = vlclua_get_playlist_internal( L );
91     lua_pushboolean( L, playlist_IsServicesDiscoveryLoaded( p_playlist, psz_sd ));
92     vlc_object_release( p_playlist );
93     return 1;
94 }