]> git.sesse.net Git - vlc/blob - modules/misc/lua/libs/misc.c
Fix memleaks (use vlclua_dir_list_free).
[vlc] / modules / misc / lua / libs / misc.c
1 /*****************************************************************************
2  * misc.c
3  *****************************************************************************
4  * Copyright (C) 2007-2008 the VideoLAN team
5  * $Id$
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 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #ifndef  _GNU_SOURCE
29 #   define  _GNU_SOURCE
30 #endif
31
32 #ifdef HAVE_CONFIG_H
33 # include "config.h"
34 #endif
35
36 #include <vlc_common.h>
37 #include <vlc_plugin.h>
38 #include <vlc_meta.h>
39 #include <vlc_charset.h>
40 #include <vlc_aout.h>
41 #include <vlc_interface.h>
42
43 #include <lua.h>        /* Low level lua C API */
44 #include <lauxlib.h>    /* Higher level C API */
45 #include <lualib.h>     /* Lua libs */
46
47 #include "../vlc.h"
48 #include "../libs.h"
49
50 /*****************************************************************************
51  * Internal lua<->vlc utils
52  *****************************************************************************/
53 vlc_object_t * vlclua_get_this( lua_State *L )
54 {
55     vlc_object_t * p_this;
56     lua_getglobal( L, "vlc" );
57     lua_getfield( L, -1, "private" );
58     p_this = (vlc_object_t*)lua_topointer( L, lua_gettop( L ) );
59     lua_pop( L, 2 );
60     return p_this;
61 }
62
63 /*****************************************************************************
64  * VLC error code translation
65  *****************************************************************************/
66 int vlclua_push_ret( lua_State *L, int i_error )
67 {
68     lua_pushnumber( L, i_error );
69     lua_pushstring( L, vlc_error( i_error ) );
70     return 2;
71 }
72
73 /*****************************************************************************
74  * Get the VLC version string
75  *****************************************************************************/
76 static int vlclua_version( lua_State *L )
77 {
78     lua_pushstring( L, VLC_Version() );
79     return 1;
80 }
81
82 /*****************************************************************************
83  * Get the VLC copyright
84  *****************************************************************************/
85 static int vlclua_copyright( lua_State *L )
86 {
87     lua_pushstring( L, COPYRIGHT_MESSAGE );
88     return 1;
89 }
90
91 /*****************************************************************************
92  * Get the VLC license msg/disclaimer
93  *****************************************************************************/
94 static int vlclua_license( lua_State *L )
95 {
96     lua_pushstring( L, LICENSE_MSG );
97     return 1;
98 }
99
100 /*****************************************************************************
101  * Quit VLC
102  *****************************************************************************/
103 static int vlclua_quit( lua_State *L )
104 {
105     vlc_object_t *p_this = vlclua_get_this( L );
106     /* The rc.c code also stops the playlist ... not sure if this is needed
107      * though. */
108     vlc_object_kill( p_this->p_libvlc );
109     return 0;
110 }
111
112 /*****************************************************************************
113  * Global properties getters
114  *****************************************************************************/
115 static int vlclua_datadir( lua_State *L )
116 {
117     lua_pushstring( L, config_GetDataDir() );
118     return 1;
119 }
120
121 static int vlclua_userdatadir( lua_State *L )
122 {
123     lua_pushstring( L, config_GetUserDataDir() );
124     return 1;
125 }
126
127 static int vlclua_homedir( lua_State *L )
128 {
129     lua_pushstring( L, config_GetHomeDir() );
130     return 1;
131 }
132
133 static int vlclua_configdir( lua_State *L )
134 {
135     char *dir = config_GetUserConfDir();
136     lua_pushstring( L, dir );
137     free( dir );
138     return 1;
139 }
140
141 static int vlclua_cachedir( lua_State *L )
142 {
143     char *dir = config_GetCacheDir();
144     lua_pushstring( L, dir );
145     free( dir );
146     return 1;
147 }
148
149 static int vlclua_datadir_list( lua_State *L )
150 {
151     const char *psz_dirname = luaL_checkstring( L, 1 );
152     char  *ppsz_dir_list[] = { NULL, NULL, NULL, NULL };
153     char **ppsz_dir = ppsz_dir_list;
154     int i = 1;
155
156     if( vlclua_dir_list( psz_dirname, ppsz_dir_list ) != VLC_SUCCESS )
157         return 0;
158     lua_newtable( L );
159     for( ; *ppsz_dir; ppsz_dir++ )
160     {
161         lua_pushstring( L, *ppsz_dir );
162         lua_rawseti( L, -2, i );
163         i ++;
164     }
165     vlclua_dir_list_free( ppsz_dir_list );
166     return 1;
167 }
168 /*****************************************************************************
169  *
170  *****************************************************************************/
171 static int vlclua_lock_and_wait( lua_State *L )
172 {
173     vlc_object_t *p_this = vlclua_get_this( L );
174     int b_quit = vlc_object_lock_and_wait( p_this );
175     lua_pushboolean( L, b_quit );
176     return 1;
177 }
178
179 static int vlclua_signal( lua_State *L )
180 {
181     vlc_object_t *p_this = vlclua_get_this( L );
182     vlc_object_signal( p_this );
183     return 0;
184 }
185
186 static int vlclua_mdate( lua_State *L )
187 {
188     lua_pushnumber( L, mdate() );
189     return 1;
190 }
191
192 static int vlclua_intf_should_die( lua_State *L )
193 {
194     intf_thread_t *p_intf = (intf_thread_t*)vlclua_get_this( L );
195     lua_pushboolean( L, intf_ShouldDie( p_intf ) );
196     return 1;
197 }
198
199 /*****************************************************************************
200  *
201  *****************************************************************************/
202 static const luaL_Reg vlclua_misc_reg[] = {
203     { "version", vlclua_version },
204     { "copyright", vlclua_copyright },
205     { "license", vlclua_license },
206
207     { "datadir", vlclua_datadir },
208     { "userdatadir", vlclua_userdatadir },
209     { "homedir", vlclua_homedir },
210     { "configdir", vlclua_configdir },
211     { "cachedir", vlclua_cachedir },
212     { "datadir_list", vlclua_datadir_list },
213
214     { "mdate", vlclua_mdate },
215
216     { "lock_and_wait", vlclua_lock_and_wait },
217     { "signal", vlclua_signal },
218
219     { "should_die", vlclua_intf_should_die },
220     { "quit", vlclua_quit },
221
222     { NULL, NULL }
223 };
224
225 void luaopen_misc( lua_State *L )
226 {
227     lua_newtable( L );
228     luaL_register( L, NULL, vlclua_misc_reg );
229     lua_setfield( L, -2, "misc" );
230 }