]> git.sesse.net Git - vlc/blob - modules/misc/lua/intf.c
Partially fix interface parsing order when multiple lua intf aliases are used.
[vlc] / modules / misc / lua / intf.c
1 /*****************************************************************************
2  * intf.c: Generic lua interface 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_meta.h>
37 #include <vlc_charset.h>
38
39 #include <vlc_interface.h>
40 #include <vlc_playlist.h>
41 #include <vlc_aout.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  * Prototypes
52  *****************************************************************************/
53 static void *Run( void * );
54
55 static const char * const ppsz_intf_options[] = { "intf", "config", NULL };
56
57 /*****************************************************************************
58  *
59  *****************************************************************************/
60 static char *FindFile( vlc_object_t *p_this, const char *psz_name )
61 {
62     char  *ppsz_dir_list[] = { NULL, NULL, NULL, NULL };
63     char **ppsz_dir;
64     vlclua_dir_list( p_this, "intf", ppsz_dir_list );
65     for( ppsz_dir = ppsz_dir_list; *ppsz_dir; ppsz_dir++ )
66     {
67         char *psz_filename;
68         FILE *fp;
69         if( asprintf( &psz_filename, "%s"DIR_SEP"%s.lua", *ppsz_dir,
70                       psz_name ) < 0 )
71         {
72             vlclua_dir_list_free( ppsz_dir_list );
73             return NULL;
74         }
75         fp = fopen( psz_filename, "r" );
76         if( fp )
77         {
78             fclose( fp );
79             vlclua_dir_list_free( ppsz_dir_list );
80             return psz_filename;
81         }
82         free( psz_filename );
83     }
84     vlclua_dir_list_free( ppsz_dir_list );
85     return NULL;
86 }
87
88 static inline void luaL_register_submodule( lua_State *L, const char *psz_name,
89                                             const luaL_Reg *l )
90 {
91     lua_newtable( L );
92     luaL_register( L, NULL, l );
93     lua_setfield( L, -2, psz_name );
94 }
95
96 static const struct
97 {
98     const char *psz_shortcut;
99     const char *psz_name;
100 } pp_shortcuts[] = {
101     { "luarc", "rc" },
102     { "rc", "rc" },
103     { "luahotkeys", "hotkeys" },
104     /* { "hotkeys", "hotkeys" }, */
105     { "luatelnet", "telnet" },
106     { "telnet", "telnet" },
107     { "luahttp", "http" },
108     { "http", "http" },
109     { NULL, NULL } };
110
111 static const char *WordInList( const char *psz_list, const char *psz_word )
112 {
113     const char *psz_str = strstr( psz_list, psz_word );
114     int i_len = strlen( psz_word );
115     while( psz_str )
116     {
117         if( (psz_str == psz_list || *(psz_str-1) == ',' )
118          /* it doesn't start in middle of a word */
119          /* it doest end in middle of a word */
120          && ( psz_str[i_len] == '\0' || psz_str[i_len] == ',' ) )
121             return psz_str;
122         psz_str = strstr( psz_str, psz_word );
123     }
124     return NULL;
125 }
126
127 static char *GetModuleName( intf_thread_t *p_intf )
128 {
129     int i;
130     const char *psz_intf;
131     /*if( *p_intf->psz_intf == '$' )
132         psz_intf = var_GetString( p_intf, p_intf->psz_intf+1 );
133     else*/
134         psz_intf = p_intf->psz_intf;
135
136     int i_candidate = -1;
137     const char *psz_candidate = NULL;
138     for( i = 0; pp_shortcuts[i].psz_name; i++ )
139     {
140         const char *psz_match;
141         if( ( psz_match = WordInList( psz_intf, pp_shortcuts[i].psz_shortcut ) ) )
142         {
143             if( !psz_candidate || psz_match < psz_candidate )
144             {
145                 psz_candidate = psz_match;
146                 i_candidate = i;
147             }
148         }
149     }
150
151     if( i_candidate >= 0 )
152         return strdup( pp_shortcuts[i_candidate].psz_name );
153
154     return var_CreateGetString( p_intf, "lua-intf" );
155 }
156
157 static const luaL_Reg p_reg[] = { { NULL, NULL } };
158
159 int Open_LuaIntf( vlc_object_t *p_this )
160 {
161     intf_thread_t *p_intf = (intf_thread_t*)p_this;
162     intf_sys_t *p_sys;
163     lua_State *L;
164
165     config_ChainParse( p_intf, "lua-", ppsz_intf_options, p_intf->p_cfg );
166     char *psz_name = NULL;
167
168     if( !p_intf->b_force )
169         psz_name = strdup( "rc" );
170     else
171         psz_name = GetModuleName( p_intf );
172         if( !psz_name ) psz_name = strdup( "dummy" );
173
174     char *psz_config;
175     bool b_config_set = false;
176
177     p_intf->p_sys = (intf_sys_t*)malloc( sizeof(intf_sys_t) );
178     if( !p_intf->p_sys )
179     {
180         free( psz_name );
181         return VLC_ENOMEM;
182     }
183     p_sys = p_intf->p_sys;
184     p_sys->psz_filename = FindFile( p_this, psz_name );
185     if( !p_sys->psz_filename )
186     {
187         msg_Err( p_intf, "Couldn't find lua interface script \"%s\".",
188                  psz_name );
189         free( psz_name );
190         free( p_sys );
191         return VLC_EGENERIC;
192     }
193     msg_Dbg( p_intf, "Found lua interface script: %s", p_sys->psz_filename );
194
195     L = luaL_newstate();
196     if( !L )
197     {
198         msg_Err( p_intf, "Could not create new Lua State" );
199         free( p_sys->psz_filename );
200         free( psz_name );
201         free( p_sys );
202         return VLC_EGENERIC;
203     }
204
205     luaL_openlibs( L );
206
207     /* register our functions */
208     luaL_register( L, "vlc", p_reg );
209
210     /* store a pointer to p_intf (FIXME: user could overwrite this) */
211     lua_pushlightuserdata( L, p_intf );
212     lua_setfield( L, -2, "private" );
213
214     /* register submodules */
215     luaopen_acl( L );
216     luaopen_config( L );
217     luaopen_volume( L );
218     luaopen_httpd( L );
219     luaopen_input( L );
220     luaopen_msg( L );
221     luaopen_misc( L );
222     luaopen_net( L );
223     luaopen_object( L );
224     luaopen_osd( L );
225     luaopen_playlist( L );
226     luaopen_sd( L );
227     luaopen_stream( L );
228     luaopen_strings( L );
229     luaopen_variables( L );
230     luaopen_video( L );
231     luaopen_vlm( L );
232     luaopen_volume( L );
233     luaopen_gettext( L );
234
235     /* clean up */
236     lua_pop( L, 1 );
237
238     /* <gruik> */
239     /* Setup the module search path */
240     {
241     char *psz_command;
242     char *psz_char = strrchr(p_sys->psz_filename,DIR_SEP_CHAR);
243     *psz_char = '\0';
244     /* FIXME: don't use luaL_dostring */
245     if( asprintf( &psz_command,
246                   "package.path = \"%s"DIR_SEP"modules"DIR_SEP"?.lua;\"..package.path",
247                   p_sys->psz_filename ) < 0 )
248     {
249         free( p_sys->psz_filename );
250         free( psz_name );
251         free( p_sys );
252         return VLC_EGENERIC;
253     }
254     *psz_char = DIR_SEP_CHAR;
255     if( luaL_dostring( L, psz_command ) )
256     {
257         free( psz_command );
258         free( p_sys->psz_filename );
259         free( psz_name );
260         free( p_sys );
261         return VLC_EGENERIC;
262     }
263     free( psz_command );
264     }
265     /* </gruik> */
266
267     psz_config = var_CreateGetString( p_intf, "lua-config" );
268     if( psz_config && *psz_config )
269     {
270         char *psz_buffer;
271         if( asprintf( &psz_buffer, "config={%s}", psz_config ) != -1 )
272         {
273             printf("%s\n", psz_buffer);
274             if( luaL_dostring( L, psz_buffer ) == 1 )
275                 msg_Err( p_intf, "Error while parsing \"lua-config\"." );
276             free( psz_buffer );
277             lua_getglobal( L, "config" );
278             if( lua_istable( L, -1 ) )
279             {
280                 lua_getfield( L, -1, psz_name );
281                 if( lua_istable( L, -1 ) )
282                 {
283                     lua_setglobal( L, "config" );
284                     b_config_set = true;
285                 }
286             }
287         }
288     }
289     free( psz_config );
290
291     if( b_config_set == false )
292     {
293         lua_newtable( L );
294         lua_setglobal( L, "config" );
295     }
296
297     p_sys->L = L;
298
299     p_intf->psz_header = psz_name;
300     /* ^^ Do I need to clean that up myself in Close_LuaIntf? */
301
302     vlc_mutex_init( &p_sys->lock );
303     vlc_cond_init( &p_sys->wait );
304     p_sys->exiting = false;
305
306     if( vlc_clone( &p_sys->thread, Run, p_intf, VLC_THREAD_PRIORITY_LOW ) )
307     {
308         p_sys->exiting = true;
309         Close_LuaIntf( p_this );
310         return VLC_ENOMEM;
311     }
312
313     return VLC_SUCCESS;
314 }
315
316 void Close_LuaIntf( vlc_object_t *p_this )
317 {
318     intf_thread_t *p_intf = (intf_thread_t*)p_this;
319     intf_sys_t *p_sys = p_intf->p_sys;
320
321     vlc_cancel( p_sys->thread );
322
323     if( !p_sys->exiting ) /* <- Read-only here and in thread: no locking */
324     {
325         vlc_mutex_lock( &p_sys->lock );
326         p_sys->exiting = true;
327         vlc_cond_signal( &p_sys->wait );
328         vlc_mutex_unlock( &p_sys->lock );
329         vlc_join( p_sys->thread, NULL );
330     }
331     vlc_cond_destroy( &p_sys->wait );
332     vlc_mutex_destroy( &p_sys->lock );
333
334     lua_close( p_sys->L );
335
336     free( p_sys->psz_filename );
337     free( p_sys );
338 }
339
340 static void *Run( void *data )
341 {
342     intf_thread_t *p_intf = data;
343     intf_sys_t *p_sys = p_intf->p_sys;
344     lua_State *L = p_sys->L;
345
346     if( luaL_dofile( L, p_sys->psz_filename ) )
347     {
348         msg_Err( p_intf, "Error loading script %s: %s", p_sys->psz_filename,
349                  lua_tostring( L, lua_gettop( L ) ) );
350         lua_pop( L, 1 );
351     }
352     return NULL;
353 }