]> git.sesse.net Git - vlc/blob - modules/misc/lua/sd.c
Avoid a segfault when services_discovery_GetServicesNames fail.
[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     if( !ppsz_names )
54         return 0;
55
56     char **ppsz_longname = ppsz_longnames;
57     char **ppsz_name = ppsz_names;
58     lua_settop( L, 0 );
59     lua_newtable( L );
60     for( ; *ppsz_name; ppsz_name++,ppsz_longname++ )
61     {
62         lua_pushstring( L, *ppsz_longname );
63         lua_setfield( L, -2, *ppsz_name );
64         free( *ppsz_name );
65         free( *ppsz_longname );
66     }
67     free( ppsz_names );
68     free( ppsz_longnames );
69     return 1;
70 }
71
72 int vlclua_sd_add( lua_State *L )
73 {
74     const char *psz_sd = luaL_checkstring( L, 1 );
75     playlist_t *p_playlist = vlclua_get_playlist_internal( L );
76     int i_ret = playlist_ServicesDiscoveryAdd( p_playlist, psz_sd );
77     vlc_object_release( p_playlist );
78     return vlclua_push_ret( L, i_ret );
79 }
80
81 int vlclua_sd_remove( lua_State *L )
82 {
83     const char *psz_sd = luaL_checkstring( L, 1 );
84     playlist_t *p_playlist = vlclua_get_playlist_internal( L );
85     int i_ret = playlist_ServicesDiscoveryRemove( p_playlist, psz_sd );
86     vlc_object_release( p_playlist );
87     return vlclua_push_ret( L, i_ret );
88 }
89
90 int vlclua_sd_is_loaded( lua_State *L )
91 {
92     const char *psz_sd = luaL_checkstring( L, 1 );
93     playlist_t *p_playlist = vlclua_get_playlist_internal( L );
94     lua_pushboolean( L, playlist_IsServicesDiscoveryLoaded( p_playlist, psz_sd ));
95     vlc_object_release( p_playlist );
96     return 1;
97 }