]> git.sesse.net Git - vlc/blob - modules/lua/vlc.c
Set SOCKET_LIBS on Windows too
[vlc] / modules / lua / vlc.c
1 /*****************************************************************************
2  * vlc.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  *          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 <assert.h>
37
38 #include <vlc_common.h>
39 #include <vlc_plugin.h>
40 #include <vlc_meta.h>
41 #include <vlc_charset.h>
42 #include <vlc_fs.h>
43 #include <vlc_aout.h>
44 #include <vlc_services_discovery.h>
45 #include <vlc_stream.h>
46 #include <sys/stat.h>
47
48 #include <lua.h>        /* Low level lua C API */
49 #include <lauxlib.h>    /* Higher level C API */
50 #include <lualib.h>     /* Lua libs */
51
52 #include "vlc.h"
53
54 /*****************************************************************************
55  * Module descriptor
56  *****************************************************************************/
57 #define INTF_TEXT N_("Lua interface")
58 #define INTF_LONGTEXT N_("Lua interface module to load")
59
60 #define CONFIG_TEXT N_("Lua interface configuration")
61 #define CONFIG_LONGTEXT N_("Lua interface configuration string. Format is: '[\"<interface module name>\"] = { <option> = <value>, ...}, ...'.")
62 #define SRC_TEXT N_( "Source directory" )
63 #define SRC_LONGTEXT N_( "Source directory" )
64 #define INDEX_TEXT N_( "Directory index" )
65 #define INDEX_LONGTEXT N_( "Allow to build directory index" )
66
67 #define TELNETHOST_TEXT N_( "Host" )
68 #define TELNETHOST_LONGTEXT N_( "This is the host on which the " \
69     "interface will listen. It defaults to all network interfaces (0.0.0.0)." \
70     " If you want this interface to be available only on the local " \
71     "machine, enter \"127.0.0.1\"." )
72 #define TELNETPORT_TEXT N_( "Port" )
73 #define TELNETPORT_LONGTEXT N_( "This is the TCP port on which this " \
74     "interface will listen. It defaults to 4212." )
75 #define TELNETPWD_TEXT N_( "Password" )
76 #define TELNETPWD_LONGTEXT N_( "A single administration password is used " \
77     "to protect this interface. The default value is \"admin\"." )
78 #define TELNETPWD_DEFAULT "admin"
79 #define RCHOST_TEXT N_("TCP command input")
80 #define RCHOST_LONGTEXT N_("Accept commands over a socket rather than stdin. " \
81             "You can set the address and port the interface will bind to." )
82 #define CLIHOST_TEXT N_("CLI input")
83 #define CLIHOST_LONGTEXT N_( "Accept commands from this source. " \
84     "The CLI defaults to stdin (\"*console\"), but can also bind to a " \
85     "plain TCP socket (\"localhost:4212\") or use the telnet protocol " \
86     "(\"telnet://0.0.0.0:4212\")" )
87
88 static int vlc_sd_probe_Open( vlc_object_t * );
89
90 vlc_module_begin ()
91         set_shortname( N_("Lua") )
92         set_description( N_("Lua interpreter") )
93         set_category( CAT_INTERFACE )
94         set_subcategory( SUBCAT_INTERFACE_CONTROL )
95         add_string( "lua-intf", "dummy",
96                     INTF_TEXT, INTF_LONGTEXT, false )
97         add_string( "lua-config", "",
98                     CONFIG_TEXT, CONFIG_LONGTEXT, false )
99         set_capability( "interface", 0 )
100         set_callbacks( Open_LuaIntf, Close_LuaIntf )
101         add_shortcut( "luaintf" )
102
103     add_submodule ()
104         set_section( N_("Lua HTTP"), 0 )
105             add_string ( "http-src",  NULL, SRC_TEXT,  SRC_LONGTEXT,  true )
106             add_bool   ( "http-index", false, INDEX_TEXT, INDEX_LONGTEXT, true )
107         set_capability( "interface", 0 )
108         set_callbacks( Open_LuaHTTP, Close_LuaIntf )
109         add_shortcut( "luahttp", "http" )
110
111     add_submodule ()
112         set_section( N_("Lua CLI"), 0 )
113             add_string( "rc-host", NULL, RCHOST_TEXT, RCHOST_LONGTEXT, true )
114             add_string( "cli-host", NULL, CLIHOST_TEXT, CLIHOST_LONGTEXT, true )
115         set_capability( "interface", 25 )
116         set_callbacks( Open_LuaCLI, Close_LuaIntf )
117 #ifndef WIN32
118         add_shortcut( "luacli", "luarc", "cli", "rc" )
119 #else
120         add_shortcut( "luacli", "luarc" )
121 #endif
122
123     add_submodule ()
124         set_section( N_("Lua Telnet"), 0 )
125             add_string( "telnet-host", "localhost", TELNETHOST_TEXT,
126                         TELNETHOST_LONGTEXT, true )
127             add_integer( "telnet-port", TELNETPORT_DEFAULT, TELNETPORT_TEXT,
128                          TELNETPORT_LONGTEXT, true )
129             add_password( "telnet-password", TELNETPWD_DEFAULT, TELNETPWD_TEXT,
130
131                           TELNETPWD_LONGTEXT, true )
132         set_capability( "interface", 0 )
133         set_callbacks( Open_LuaTelnet, Close_LuaIntf )
134         add_shortcut( "luatelnet", "telnet" )
135
136         /* add_shortcut( "luahotkeys" ) */
137         /* add_shortcut( "hotkeys" ) */
138
139     add_submodule ()
140         set_shortname( N_( "Lua Meta Fetcher" ) )
141         set_description( N_("Fetch meta data using lua scripts") )
142         set_capability( "meta fetcher", 10 )
143         set_callbacks( FetchMeta, NULL )
144
145     add_submodule ()
146         set_shortname( N_( "Lua Meta Reader" ) )
147         set_description( N_("Read meta data using lua scripts") )
148         set_capability( "meta reader", 10 )
149         set_callbacks( ReadMeta, NULL )
150
151     add_submodule ()
152         add_shortcut( "luaplaylist" )
153         set_shortname( N_("Lua Playlist") )
154         set_description( N_("Lua Playlist Parser Interface") )
155         set_capability( "demux", 2 )
156         set_callbacks( Import_LuaPlaylist, Close_LuaPlaylist )
157
158     add_submodule ()
159         set_shortname( N_( "Lua Art" ) )
160         set_description( N_("Fetch artwork using lua scripts") )
161         set_capability( "art finder", 10 )
162         set_callbacks( FindArt, NULL )
163
164     add_submodule ()
165         set_shortname( N_("Lua Extension") )
166         add_shortcut( "luaextension" )
167         set_capability( "extension", 1 )
168         set_callbacks( Open_Extension, Close_Extension )
169
170     add_submodule ()
171         set_description( N_("Lua SD Module") )
172         add_shortcut( "luasd" )
173         set_capability( "services_discovery", 0 )
174         add_string( "lua-sd", "", NULL, NULL, false )
175             change_volatile()
176         add_string( "lua-longname", "", NULL, NULL, false )
177             change_volatile()
178         set_callbacks( Open_LuaSD, Close_LuaSD )
179
180     add_submodule ()
181         set_description( N_("Freebox TV") )
182         add_shortcut( "freebox" )
183         set_capability( "services_discovery", 0 )
184         set_callbacks( Open_LuaSD, Close_LuaSD )
185
186     add_submodule ()
187         set_description( N_("French TV") )
188         add_shortcut( "frenchtv" )
189         set_capability( "services_discovery", 0 )
190         set_callbacks( Open_LuaSD, Close_LuaSD )
191
192     VLC_SD_PROBE_SUBMODULE
193
194 vlc_module_end ()
195
196 /*****************************************************************************
197  *
198  *****************************************************************************/
199 static const char *ppsz_lua_exts[] = { ".luac", ".lua", ".vle", NULL };
200 static int file_select( const char *file )
201 {
202     int i = strlen( file );
203     int j;
204     for( j = 0; ppsz_lua_exts[j]; j++ )
205     {
206         int l = strlen( ppsz_lua_exts[j] );
207         if( i >= l && !strcmp( file+i-l, ppsz_lua_exts[j] ) )
208             return 1;
209     }
210     return 0;
211 }
212
213 static int file_compare( const char **a, const char **b )
214 {
215     return strcmp( *a, *b );
216 }
217
218 int vlclua_dir_list( vlc_object_t *p_this, const char *luadirname,
219                      char ***pppsz_dir_list )
220 {
221 #define MAX_DIR_LIST_SIZE 5
222     *pppsz_dir_list = malloc(MAX_DIR_LIST_SIZE*sizeof(char *));
223     if (!*pppsz_dir_list)
224         return VLC_EGENERIC;
225     char **ppsz_dir_list = *pppsz_dir_list;
226
227     int i = 0;
228     char *datadir = config_GetUserDir( VLC_DATA_DIR );
229
230     if( likely(datadir != NULL)
231      && likely(asprintf( &ppsz_dir_list[i], "%s"DIR_SEP"lua"DIR_SEP"%s",
232                          datadir, luadirname ) != -1) )
233         i++;
234     free( datadir );
235
236 #if !(defined(__APPLE__) || defined(WIN32))
237     if( likely(asprintf( &ppsz_dir_list[i], "%s"DIR_SEP"lua"DIR_SEP"%s",
238                          config_GetLibDir(), luadirname ) != -1) )
239             i++;
240 #endif
241
242     char *psz_datapath = config_GetDataDir( p_this );
243     if( likely(psz_datapath != NULL) )
244     {
245         if( likely(asprintf( &ppsz_dir_list[i], "%s"DIR_SEP"lua"DIR_SEP"%s",
246                               psz_datapath, luadirname ) != -1) )
247             i++;
248
249 #if defined(__APPLE__)
250         if( likely(asprintf( &ppsz_dir_list[i],
251                              "%s"DIR_SEP"share"DIR_SEP"lua"DIR_SEP"%s",
252                              psz_datapath, luadirname ) != -1) )
253             i++;
254 #endif
255         free( psz_datapath );
256     }
257
258     ppsz_dir_list[i] = NULL;
259
260     assert( i < MAX_DIR_LIST_SIZE);
261
262     return VLC_SUCCESS;
263 }
264
265 void vlclua_dir_list_free( char **ppsz_dir_list )
266 {
267     for( char **ppsz_dir = ppsz_dir_list; *ppsz_dir; ppsz_dir++ )
268         free( *ppsz_dir );
269     free( ppsz_dir_list );
270 }
271
272 /*****************************************************************************
273  * Will execute func on all scripts in luadirname, and stop if func returns
274  * success.
275  *****************************************************************************/
276 int vlclua_scripts_batch_execute( vlc_object_t *p_this,
277                                   const char * luadirname,
278                                   int (*func)(vlc_object_t *, const char *, void *),
279                                   void * user_data)
280 {
281     char **ppsz_dir_list = NULL;
282     int i_ret;
283
284     if( (i_ret = vlclua_dir_list( p_this, luadirname, &ppsz_dir_list )) != VLC_SUCCESS)
285         return i_ret;
286
287     i_ret = VLC_EGENERIC;
288     for( char **ppsz_dir = ppsz_dir_list; *ppsz_dir; ppsz_dir++ )
289     {
290         char **ppsz_filelist;
291
292         msg_Dbg( p_this, "Trying Lua scripts in %s", *ppsz_dir );
293         int i_files = vlc_scandir( *ppsz_dir, &ppsz_filelist, file_select,
294                                    file_compare );
295         if( i_files < 0 )
296             continue;
297
298         char **ppsz_file = ppsz_filelist;
299         char **ppsz_fileend = ppsz_filelist + i_files;
300
301         while( ppsz_file < ppsz_fileend )
302         {
303             char *psz_filename;
304
305             if( asprintf( &psz_filename,
306                           "%s" DIR_SEP "%s", *ppsz_dir, *ppsz_file ) == -1 )
307                 psz_filename = NULL;
308             free( *(ppsz_file++) );
309
310             if( likely(psz_filename != NULL) )
311             {
312                 msg_Dbg( p_this, "Trying Lua playlist script %s",
313                          psz_filename );
314                 i_ret = func( p_this, psz_filename, user_data );
315                 free( psz_filename );
316                 if( i_ret == VLC_SUCCESS )
317                     break;
318             }
319         }
320
321         while( ppsz_file < ppsz_fileend )
322             free( *(ppsz_file++) );
323         free( ppsz_filelist );
324
325         if( i_ret == VLC_SUCCESS )
326             break;
327     }
328     vlclua_dir_list_free( ppsz_dir_list );
329     return i_ret;
330 }
331
332 char *vlclua_find_file( vlc_object_t *p_this, const char *psz_luadirname, const char *psz_name )
333 {
334     char **ppsz_dir_list = NULL;
335     vlclua_dir_list( p_this, psz_luadirname, &ppsz_dir_list );
336
337     for( char **ppsz_dir = ppsz_dir_list; *ppsz_dir; ppsz_dir++ )
338     {
339         for( const char **ppsz_ext = ppsz_lua_exts; *ppsz_ext; ppsz_ext++ )
340         {
341             char *psz_filename;
342             struct stat st;
343
344             if( asprintf( &psz_filename, "%s"DIR_SEP"%s%s", *ppsz_dir,
345                           psz_name, *ppsz_ext ) < 0 )
346             {
347                 vlclua_dir_list_free( ppsz_dir_list );
348                 return NULL;
349             }
350
351             if( vlc_stat( psz_filename, &st ) == 0
352                 && S_ISREG( st.st_mode ) )
353             {
354                 vlclua_dir_list_free( ppsz_dir_list );
355                 return psz_filename;
356             }
357             free( psz_filename );
358         }
359     }
360     vlclua_dir_list_free( ppsz_dir_list );
361     return NULL;
362 }
363
364 /*****************************************************************************
365  * Meta data setters utility.
366  * Playlist item table should be on top of the stack when these are called
367  *****************************************************************************/
368 #undef vlclua_read_meta_data
369 void vlclua_read_meta_data( vlc_object_t *p_this, lua_State *L,
370                             input_item_t *p_input )
371 {
372 #define TRY_META( a, b )                                        \
373     lua_getfield( L, -1, a );                                   \
374     if( lua_isstring( L, -1 ) &&                                \
375         strcmp( lua_tostring( L, -1 ), "" ) )                   \
376     {                                                           \
377         char *psz_value = strdup( lua_tostring( L, -1 ) );      \
378         EnsureUTF8( psz_value );                                \
379         msg_Dbg( p_this, #b ": %s", psz_value );                \
380         input_item_Set ## b ( p_input, psz_value );             \
381         free( psz_value );                                      \
382     }                                                           \
383     lua_pop( L, 1 ); /* pop a */
384     TRY_META( "title", Title );
385     TRY_META( "artist", Artist );
386     TRY_META( "genre", Genre );
387     TRY_META( "copyright", Copyright );
388     TRY_META( "album", Album );
389     TRY_META( "tracknum", TrackNum );
390     TRY_META( "description", Description );
391     TRY_META( "rating", Rating );
392     TRY_META( "date", Date );
393     TRY_META( "setting", Setting );
394     TRY_META( "url", URL );
395     TRY_META( "language", Language );
396     TRY_META( "nowplaying", NowPlaying );
397     TRY_META( "publisher", Publisher );
398     TRY_META( "encodedby", EncodedBy );
399     TRY_META( "arturl", ArtURL );
400     TRY_META( "trackid", TrackID );
401 }
402
403 #undef vlclua_read_custom_meta_data
404 void vlclua_read_custom_meta_data( vlc_object_t *p_this, lua_State *L,
405                                      input_item_t *p_input )
406 {
407     /* Lock the input item and create the meta table if needed */
408     vlc_mutex_lock( &p_input->lock );
409
410     if( !p_input->p_meta )
411         p_input->p_meta = vlc_meta_New();
412
413     /* ... item */
414     lua_getfield( L, -1, "meta" );
415     /* ... item meta */
416     if( lua_istable( L, -1 ) )
417     {
418         lua_pushnil( L );
419         /* ... item meta nil */
420         while( lua_next( L, -2 ) )
421         {
422             /* ... item meta key value */
423             if( !lua_isstring( L, -2 ) || !lua_isstring( L, -1 ) )
424             {
425                 msg_Err( p_this, "'meta' keys and values must be strings");
426                 lua_pop( L, 1 ); /* pop "value" */
427                 continue;
428             }
429             const char *psz_key = lua_tostring( L, -2 );
430             const char *psz_value = lua_tostring( L, -1 );
431
432             vlc_meta_AddExtra( p_input->p_meta, psz_key, psz_value );
433
434             lua_pop( L, 1 ); /* pop "value" */
435         }
436     }
437     lua_pop( L, 1 ); /* pop "meta" */
438     /* ... item -> back to original stack */
439
440     vlc_mutex_unlock( &p_input->lock );
441 }
442
443 /*****************************************************************************
444  * Playlist utilities
445  ****************************************************************************/
446 /**
447  * Playlist item table should be on top of the stack when this is called
448  */
449 #undef vlclua_read_options
450 void vlclua_read_options( vlc_object_t *p_this, lua_State *L,
451                             int *pi_options, char ***pppsz_options )
452 {
453     lua_getfield( L, -1, "options" );
454     if( lua_istable( L, -1 ) )
455     {
456         lua_pushnil( L );
457         while( lua_next( L, -2 ) )
458         {
459             if( lua_isstring( L, -1 ) )
460             {
461                 char *psz_option = strdup( lua_tostring( L, -1 ) );
462                 msg_Dbg( p_this, "Option: %s", psz_option );
463                 INSERT_ELEM( *pppsz_options, *pi_options, *pi_options,
464                              psz_option );
465             }
466             else
467             {
468                 msg_Warn( p_this, "Option should be a string" );
469             }
470             lua_pop( L, 1 ); /* pop option */
471         }
472     }
473     lua_pop( L, 1 ); /* pop "options" */
474 }
475
476 #undef vlclua_playlist_add_internal
477 int vlclua_playlist_add_internal( vlc_object_t *p_this, lua_State *L,
478                                     playlist_t *p_playlist,
479                                     input_item_t *p_parent, bool b_play )
480 {
481     int i_count = 0;
482     input_item_node_t *p_parent_node = NULL;
483
484     assert( p_parent || p_playlist );
485
486     /* playlist */
487     if( lua_istable( L, -1 ) )
488     {
489         if( p_parent ) p_parent_node = input_item_node_Create( p_parent );
490         lua_pushnil( L );
491         /* playlist nil */
492         while( lua_next( L, -2 ) )
493         {
494             /* playlist key item */
495             /* <Parse playlist item> */
496             if( lua_istable( L, -1 ) )
497             {
498                 lua_getfield( L, -1, "path" );
499                 /* playlist key item path */
500                 if( lua_isstring( L, -1 ) )
501                 {
502                     const char   *psz_path     = NULL;
503                     const char   *psz_name     = NULL;
504                     char        **ppsz_options = NULL;
505                     int           i_options    = 0;
506                     mtime_t       i_duration   = -1;
507                     input_item_t *p_input;
508
509                     /* Read path and name */
510                     psz_path = lua_tostring( L, -1 );
511                     msg_Dbg( p_this, "Path: %s", psz_path );
512                     lua_getfield( L, -2, "name" );
513                     /* playlist key item path name */
514                     if( lua_isstring( L, -1 ) )
515                     {
516                         psz_name = lua_tostring( L, -1 );
517                         msg_Dbg( p_this, "Name: %s", psz_name );
518                     }
519                     else
520                     {
521                         if( !lua_isnil( L, -1 ) )
522                             msg_Warn( p_this, "Playlist item name should be a string." );
523                         psz_name = psz_path;
524                     }
525
526                     /* Read duration */
527                     lua_getfield( L, -3, "duration" );
528                     /* playlist key item path name duration */
529                     if( lua_isnumber( L, -1 ) )
530                     {
531                         i_duration = (mtime_t)(lua_tonumber( L, -1 )*1e6);
532                     }
533                     else if( !lua_isnil( L, -1 ) )
534                     {
535                         msg_Warn( p_this, "Playlist item duration should be a number (in seconds)." );
536                     }
537                     lua_pop( L, 1 ); /* pop "duration" */
538
539                     /* playlist key item path name */
540
541                     /* Read options: item must be on top of stack */
542                     lua_pushvalue( L, -3 );
543                     /* playlist key item path name item */
544                     vlclua_read_options( p_this, L, &i_options, &ppsz_options );
545
546                     /* Create input item */
547                     p_input = input_item_NewExt( psz_path, psz_name, i_options,
548                                                 (const char **)ppsz_options,
549                                                 VLC_INPUT_OPTION_TRUSTED,
550                                                 i_duration );
551                     lua_pop( L, 3 ); /* pop "path name item" */
552                     /* playlist key item */
553
554                     /* Read meta data: item must be on top of stack */
555                     vlclua_read_meta_data( p_this, L, p_input );
556
557                     /* Read custom meta data: item must be on top of stack*/
558                     vlclua_read_custom_meta_data( p_this, L, p_input );
559
560                     /* Append item to playlist */
561                     if( p_parent ) /* Add to node */
562                     {
563                         input_item_CopyOptions( p_parent, p_input );
564                         input_item_node_AppendItem( p_parent_node, p_input );
565                     }
566                     else /* Play or Enqueue (preparse) */
567                         /* FIXME: playlist_AddInput() can fail */
568                         playlist_AddInput( p_playlist, p_input,
569                                PLAYLIST_APPEND |
570                                ( b_play ? PLAYLIST_GO : PLAYLIST_PREPARSE ),
571                                PLAYLIST_END, true, false );
572                     i_count ++; /* increment counter */
573                     vlc_gc_decref( p_input );
574                     while( i_options > 0 )
575                         free( ppsz_options[--i_options] );
576                     free( ppsz_options );
577                 }
578                 else
579                 {
580                     lua_pop( L, 1 ); /* pop "path" */
581                     msg_Warn( p_this,
582                              "Playlist item's path should be a string" );
583                 }
584                 /* playlist key item */
585             }
586             else
587             {
588                 msg_Warn( p_this, "Playlist item should be a table" );
589             }
590             /* <Parse playlist item> */
591             lua_pop( L, 1 ); /* pop the value, keep the key for
592                               * the next lua_next() call */
593             /* playlist key */
594         }
595         /* playlist */
596         if( p_parent )
597         {
598             if( i_count ) input_item_node_PostAndDelete( p_parent_node );
599             else input_item_node_Delete( p_parent_node );
600         }
601     }
602     else
603     {
604         msg_Warn( p_this, "Playlist should be a table." );
605     }
606     return i_count;
607 }
608
609 static int vlc_sd_probe_Open( vlc_object_t *obj )
610 {
611     vlc_probe_t *probe = (vlc_probe_t *)obj;
612     char **ppsz_filelist = NULL;
613     char **ppsz_fileend  = NULL;
614     char **ppsz_file;
615     char *psz_name;
616     char **ppsz_dir_list = NULL;
617     char **ppsz_dir;
618     lua_State *L = NULL;
619     vlclua_dir_list( obj, "sd", &ppsz_dir_list );
620     for( ppsz_dir = ppsz_dir_list; *ppsz_dir; ppsz_dir++ )
621     {
622         int i_files;
623         if( ppsz_filelist )
624         {
625             for( ppsz_file = ppsz_filelist; ppsz_file < ppsz_fileend;
626                  ppsz_file++ )
627                 free( *ppsz_file );
628             free( ppsz_filelist );
629             ppsz_filelist = NULL;
630         }
631         i_files = vlc_scandir( *ppsz_dir, &ppsz_filelist, file_select,
632                                 file_compare );
633         if( i_files < 1 ) continue;
634         ppsz_fileend = ppsz_filelist + i_files;
635         for( ppsz_file = ppsz_filelist; ppsz_file < ppsz_fileend; ppsz_file++ )
636         {
637             char  *psz_filename;
638             if( asprintf( &psz_filename,
639                           "%s" DIR_SEP "%s", *ppsz_dir, *ppsz_file ) < 0 )
640             {
641                 goto error;
642             }
643             L = luaL_newstate();
644             if( !L )
645             {
646                 msg_Err( probe, "Could not create new Lua State" );
647                 free( psz_filename );
648                 goto error;
649             }
650             luaL_openlibs( L );
651             if( vlclua_add_modules_path( probe, L, psz_filename ) )
652             {
653                 msg_Err( probe, "Error while setting the module search path for %s",
654                           psz_filename );
655                 free( psz_filename );
656                 goto error;
657             }
658             if( luaL_dofile( L, psz_filename ) )
659             {
660
661                 msg_Err( probe, "Error loading script %s: %s", psz_filename,
662                           lua_tostring( L, lua_gettop( L ) ) );
663                 lua_pop( L, 1 );
664                 free( psz_filename );
665                 lua_close( L );
666                 continue;
667             }
668             char *psz_longname;
669             char *temp = strchr( *ppsz_file, '.' );
670             if( temp )
671                 *temp = '\0';
672             lua_getglobal( L, "descriptor" );
673             if( !lua_isfunction( L, lua_gettop( L ) ) || lua_pcall( L, 0, 1, 0 ) )
674             {
675                 msg_Warn( probe, "No 'descriptor' function in '%s'", psz_filename );
676                 lua_pop( L, 1 );
677                 if( !( psz_longname = strdup( *ppsz_file ) ) )
678                 {
679                     free( psz_filename );
680                     goto error;
681                 }
682             }
683             else
684             {
685                 lua_getfield( L, -1, "title" );
686                 if( !lua_isstring( L, -1 ) ||
687                     !( psz_longname = strdup( lua_tostring( L, -1 ) ) ) )
688                 {
689                     free( psz_filename );
690                     goto error;
691                 }
692             }
693
694             char *psz_file_esc = config_StringEscape( *ppsz_file );
695             char *psz_longname_esc = config_StringEscape( psz_longname );
696             if( asprintf( &psz_name, "lua{sd='%s',longname='%s'}",
697                           psz_file_esc, psz_longname_esc ) < 0 )
698             {
699                 free( psz_file_esc );
700                 free( psz_longname_esc );
701                 free( psz_filename );
702                 free( psz_longname );
703                 goto error;
704             }
705             free( psz_file_esc );
706             free( psz_longname_esc );
707             vlc_sd_probe_Add( probe, psz_name, psz_longname, SD_CAT_INTERNET );
708             free( psz_name );
709             free( psz_longname );
710             free( psz_filename );
711             lua_close( L );
712         }
713     }
714     if( ppsz_filelist )
715     {
716         for( ppsz_file = ppsz_filelist; ppsz_file < ppsz_fileend;
717              ppsz_file++ )
718             free( *ppsz_file );
719         free( ppsz_filelist );
720     }
721     vlclua_dir_list_free( ppsz_dir_list );
722     return VLC_PROBE_CONTINUE;
723 error:
724     if( ppsz_filelist )
725     {
726         for( ppsz_file = ppsz_filelist; ppsz_file < ppsz_fileend;
727              ppsz_file++ )
728             free( *ppsz_file );
729         free( ppsz_filelist );
730     }
731     if( L )
732         lua_close( L );
733     vlclua_dir_list_free( ppsz_dir_list );
734     return VLC_ENOMEM;
735 }
736
737 static int vlclua_add_modules_path_inner( lua_State *L, const char *psz_path )
738 {
739     int count = 0;
740     for( const char **ppsz_ext = ppsz_lua_exts; *ppsz_ext; ppsz_ext++ )
741     {
742         lua_pushfstring( L, "%s"DIR_SEP"modules"DIR_SEP"?%s;",
743                          psz_path, *ppsz_ext );
744         count ++;
745     }
746
747     return count;
748 }
749
750 #undef vlclua_add_modules_path
751 int vlclua_add_modules_path( vlc_object_t *obj, lua_State *L, const char *psz_filename )
752 {
753     /* Setup the module search path:
754      *   * "The script's directory"/modules
755      *   * "The script's parent directory"/modules
756      *   * and so on for all the next directories in the directory list
757      */
758     char *psz_path = strdup( psz_filename );
759     if( !psz_path )
760         return 1;
761
762     char *psz_char = strrchr( psz_path, DIR_SEP_CHAR );
763     if( !psz_char )
764     {
765         free( psz_path );
766         return 1;
767     }
768     *psz_char = '\0';
769
770     /* psz_path now holds the file's directory */
771     psz_char = strrchr( psz_path, DIR_SEP_CHAR );
772     if( !psz_char )
773     {
774         free( psz_path );
775         return 1;
776     }
777     *psz_char = '\0';
778
779     /* Push package on stack */
780     int count = 0;
781     lua_getglobal( L, "package" );
782
783     /* psz_path now holds the file's parent directory */
784     count += vlclua_add_modules_path_inner( L, psz_path );
785     *psz_char = DIR_SEP_CHAR;
786
787     /* psz_path now holds the file's directory */
788     count += vlclua_add_modules_path_inner( L, psz_path );
789
790     char **ppsz_dir_list = NULL;
791     vlclua_dir_list( obj, psz_char+1/* gruik? */, &ppsz_dir_list );
792     char **ppsz_dir = ppsz_dir_list;
793
794     for( ; *ppsz_dir && strcmp( *ppsz_dir, psz_path ); ppsz_dir++ );
795     free( psz_path );
796
797     for( ; *ppsz_dir; ppsz_dir++ )
798     {
799         psz_path = *ppsz_dir;
800         /* FIXME: doesn't work well with meta/... modules due to the double
801          * directory depth */
802         psz_char = strrchr( psz_path, DIR_SEP_CHAR );
803         if( !psz_char )
804         {
805             vlclua_dir_list_free( ppsz_dir_list );
806             return 1;
807         }
808
809         *psz_char = '\0';
810         count += vlclua_add_modules_path_inner( L, psz_path );
811         *psz_char = DIR_SEP_CHAR;
812         count += vlclua_add_modules_path_inner( L, psz_path );
813     }
814
815     lua_getfield( L, -(count+1), "path" ); /* Get package.path */
816     lua_concat( L, count+1 ); /* Concat vlc module paths and package.path */
817     lua_setfield( L, -2, "path"); /* Set package.path */
818     lua_pop( L, 1 ); /* Pop the package module */
819
820     vlclua_dir_list_free( ppsz_dir_list );
821     return 0;
822 }
823
824 /** Replacement for luaL_dofile, using VLC's input capabilities */
825 int vlclua_dofile( vlc_object_t *p_this, lua_State *L, const char *uri )
826 {
827     if( !strstr( uri, "://" ) )
828         return luaL_dofile( L, uri );
829     if( !strncasecmp( uri, "file://", 7 ) )
830         return luaL_dofile( L, uri + 7 );
831     stream_t *s = stream_UrlNew( p_this, uri );
832     if( !s )
833     {
834         return 1;
835     }
836     int64_t i_size = stream_Size( s );
837     char *p_buffer = ( i_size > 0 ) ? malloc( i_size ) : NULL;
838     if( !p_buffer )
839     {
840         // FIXME: read the whole stream until we reach the end (if no size)
841         stream_Delete( s );
842         return 1;
843     }
844     int64_t i_read = stream_Read( s, p_buffer, (int) i_size );
845     int i_ret = ( i_read == i_size ) ? 0 : 1;
846     if( !i_ret )
847         i_ret = luaL_loadbuffer( L, p_buffer, (size_t) i_size, uri );
848     if( !i_ret )
849         i_ret = lua_pcall( L, 0, LUA_MULTRET, 0 );
850     stream_Delete( s );
851     free( p_buffer );
852     return i_ret;
853 }