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