skins2: fix initial text state to reflect documentation
[vlc.git] / modules / lua / vlc.c
blob90ea73ebf09727c049c7c5b6d45257e4d8b01768
1 /*****************************************************************************
2 * vlc.c: Generic lua interface functions
3 *****************************************************************************
4 * Copyright (C) 2007-2008 the VideoLAN team
5 * $Id$
7 * Authors: Antoine Cellerier <dionoea at videolan tod org>
8 * Pierre d'Herbemont <pdherbemont # videolan.org>
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.
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.
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 *****************************************************************************/
25 /*****************************************************************************
26 * Preamble
27 *****************************************************************************/
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
32 #include <assert.h>
33 #include <sys/stat.h>
35 #include <vlc_common.h>
36 #include <vlc_plugin.h>
37 #include <vlc_meta.h>
38 #include <vlc_charset.h>
39 #include <vlc_fs.h>
40 #include <vlc_services_discovery.h>
41 #include <vlc_stream.h>
43 #include "vlc.h"
45 /*****************************************************************************
46 * Module descriptor
47 *****************************************************************************/
48 #define INTF_TEXT N_("Lua interface")
49 #define INTF_LONGTEXT N_("Lua interface module to load")
51 #define CONFIG_TEXT N_("Lua interface configuration")
52 #define CONFIG_LONGTEXT N_("Lua interface configuration string. Format is: '[\"<interface module name>\"] = { <option> = <value>, ...}, ...'.")
53 #define PASS_TEXT N_( "Password" )
54 #define PASS_LONGTEXT N_( "A single password restricts access " \
55 "to this interface." )
56 #define SRC_TEXT N_( "Source directory" )
57 #define SRC_LONGTEXT N_( "Source directory" )
58 #define INDEX_TEXT N_( "Directory index" )
59 #define INDEX_LONGTEXT N_( "Allow to build directory index" )
61 #define TELNETHOST_TEXT N_( "Host" )
62 #define TELNETHOST_LONGTEXT N_( "This is the host on which the " \
63 "interface will listen. It defaults to all network interfaces (0.0.0.0)." \
64 " If you want this interface to be available only on the local " \
65 "machine, enter \"127.0.0.1\"." )
66 #define TELNETPORT_TEXT N_( "Port" )
67 #define TELNETPORT_LONGTEXT N_( "This is the TCP port on which this " \
68 "interface will listen. It defaults to 4212." )
69 #define TELNETPWD_TEXT N_( "Password" )
70 #define TELNETPWD_LONGTEXT N_( "A single password restricts access " \
71 "to this interface." )
72 #define RCHOST_TEXT N_("TCP command input")
73 #define RCHOST_LONGTEXT N_("Accept commands over a socket rather than stdin. " \
74 "You can set the address and port the interface will bind to." )
75 #define CLIHOST_TEXT N_("CLI input")
76 #define CLIHOST_LONGTEXT N_( "Accept commands from this source. " \
77 "The CLI defaults to stdin (\"*console\"), but can also bind to a " \
78 "plain TCP socket (\"localhost:4212\") or use the telnet protocol " \
79 "(\"telnet://0.0.0.0:4212\")" )
81 static int vlc_sd_probe_Open( vlc_object_t * );
83 vlc_module_begin ()
84 set_shortname( N_("Lua") )
85 set_description( N_("Lua interpreter") )
86 set_category( CAT_INTERFACE )
87 set_subcategory( SUBCAT_INTERFACE_MAIN )
89 add_string( "lua-intf", "dummy", INTF_TEXT, INTF_LONGTEXT, false )
90 add_string( "lua-config", "", CONFIG_TEXT, CONFIG_LONGTEXT, false )
91 set_capability( "interface", 0 )
92 set_callbacks( Open_LuaIntf, Close_LuaIntf )
93 add_shortcut( "luaintf" )
95 add_submodule ()
96 set_section( N_("Lua HTTP"), 0 )
97 add_password ( "http-password", NULL, PASS_TEXT, PASS_LONGTEXT, false )
98 add_string ( "http-src", NULL, SRC_TEXT, SRC_LONGTEXT, true )
99 add_bool ( "http-index", false, INDEX_TEXT, INDEX_LONGTEXT, true )
100 set_capability( "interface", 0 )
101 set_callbacks( Open_LuaHTTP, Close_LuaIntf )
102 add_shortcut( "luahttp", "http" )
103 set_description( N_("Lua HTTP") )
105 add_submodule ()
106 set_section( N_("Lua CLI"), 0 )
107 add_string( "rc-host", NULL, RCHOST_TEXT, RCHOST_LONGTEXT, true )
108 add_string( "cli-host", NULL, CLIHOST_TEXT, CLIHOST_LONGTEXT, true )
109 set_capability( "interface", 25 )
110 set_description( N_("Command-line interface") )
111 set_callbacks( Open_LuaCLI, Close_LuaIntf )
112 #ifndef WIN32
113 add_shortcut( "luacli", "luarc", "cli", "rc" )
114 #else
115 add_shortcut( "luacli", "luarc" )
116 #endif
118 add_submodule ()
119 set_section( N_("Lua Telnet"), 0 )
120 add_string( "telnet-host", "localhost", TELNETHOST_TEXT,
121 TELNETHOST_LONGTEXT, true )
122 add_integer( "telnet-port", TELNETPORT_DEFAULT, TELNETPORT_TEXT,
123 TELNETPORT_LONGTEXT, true )
124 change_integer_range( 1, 65535 )
125 add_password( "telnet-password", NULL, TELNETPWD_TEXT,
127 TELNETPWD_LONGTEXT, true )
128 set_capability( "interface", 0 )
129 set_callbacks( Open_LuaTelnet, Close_LuaIntf )
130 set_description( N_("Lua Telnet") )
131 add_shortcut( "luatelnet", "telnet" )
133 add_submodule ()
134 set_shortname( N_( "Lua Meta Fetcher" ) )
135 set_description( N_("Fetch meta data using lua scripts") )
136 set_capability( "meta fetcher", 10 )
137 set_callbacks( FetchMeta, NULL )
139 add_submodule ()
140 set_shortname( N_( "Lua Meta Reader" ) )
141 set_description( N_("Read meta data using lua scripts") )
142 set_capability( "meta reader", 10 )
143 set_callbacks( ReadMeta, NULL )
145 add_submodule ()
146 add_shortcut( "luaplaylist" )
147 set_shortname( N_("Lua Playlist") )
148 set_description( N_("Lua Playlist Parser Interface") )
149 set_capability( "demux", 2 )
150 set_callbacks( Import_LuaPlaylist, Close_LuaPlaylist )
152 add_submodule ()
153 set_shortname( N_( "Lua Art" ) )
154 set_description( N_("Fetch artwork using lua scripts") )
155 set_capability( "art finder", 10 )
156 set_callbacks( FindArt, NULL )
158 add_submodule ()
159 set_shortname( N_("Lua Extension") )
160 set_description( N_("Lua Extension") )
161 add_shortcut( "luaextension" )
162 set_capability( "extension", 1 )
163 set_callbacks( Open_Extension, Close_Extension )
165 add_submodule ()
166 set_description( N_("Lua SD Module") )
167 add_shortcut( "luasd" )
168 set_capability( "services_discovery", 0 )
169 add_string( "lua-sd", "", NULL, NULL, false )
170 change_volatile()
171 add_string( "lua-longname", "", NULL, NULL, false )
172 change_volatile()
173 set_callbacks( Open_LuaSD, Close_LuaSD )
175 VLC_SD_PROBE_SUBMODULE
177 vlc_module_end ()
179 /*****************************************************************************
181 *****************************************************************************/
182 static const char *ppsz_lua_exts[] = { ".luac", ".lua", ".vle", NULL };
183 static int file_select( const char *file )
185 int i = strlen( file );
186 int j;
187 for( j = 0; ppsz_lua_exts[j]; j++ )
189 int l = strlen( ppsz_lua_exts[j] );
190 if( i >= l && !strcmp( file+i-l, ppsz_lua_exts[j] ) )
191 return 1;
193 return 0;
196 static int file_compare( const char **a, const char **b )
198 return strcmp( *a, *b );
201 int vlclua_dir_list( const char *luadirname, char ***pppsz_dir_list )
203 #define MAX_DIR_LIST_SIZE 5
204 *pppsz_dir_list = malloc(MAX_DIR_LIST_SIZE*sizeof(char *));
205 if (!*pppsz_dir_list)
206 return VLC_EGENERIC;
207 char **ppsz_dir_list = *pppsz_dir_list;
209 int i = 0;
210 char *datadir = config_GetUserDir( VLC_DATA_DIR );
212 if( likely(datadir != NULL)
213 && likely(asprintf( &ppsz_dir_list[i], "%s"DIR_SEP"lua"DIR_SEP"%s",
214 datadir, luadirname ) != -1) )
215 i++;
216 free( datadir );
218 #if !(defined(__APPLE__) || defined(WIN32) || defined(__OS2__))
219 char *psz_libpath = config_GetLibDir();
220 if( likely(psz_libpath != NULL) )
222 if( likely(asprintf( &ppsz_dir_list[i], "%s"DIR_SEP"lua"DIR_SEP"%s",
223 psz_libpath, luadirname ) != -1) )
224 i++;
225 free( psz_libpath );
227 #endif
229 char *psz_datapath = config_GetDataDir();
230 if( likely(psz_datapath != NULL) )
232 if( likely(asprintf( &ppsz_dir_list[i], "%s"DIR_SEP"lua"DIR_SEP"%s",
233 psz_datapath, luadirname ) != -1) )
234 i++;
236 #if defined(__APPLE__)
237 if( likely(asprintf( &ppsz_dir_list[i],
238 "%s"DIR_SEP"share"DIR_SEP"lua"DIR_SEP"%s",
239 psz_datapath, luadirname ) != -1) )
240 i++;
241 #endif
242 free( psz_datapath );
245 ppsz_dir_list[i] = NULL;
247 assert( i < MAX_DIR_LIST_SIZE);
249 return VLC_SUCCESS;
252 void vlclua_dir_list_free( char **ppsz_dir_list )
254 for( char **ppsz_dir = ppsz_dir_list; *ppsz_dir; ppsz_dir++ )
255 free( *ppsz_dir );
256 free( ppsz_dir_list );
259 /*****************************************************************************
260 * Will execute func on all scripts in luadirname, and stop if func returns
261 * success.
262 *****************************************************************************/
263 int vlclua_scripts_batch_execute( vlc_object_t *p_this,
264 const char * luadirname,
265 int (*func)(vlc_object_t *, const char *, void *),
266 void * user_data)
268 char **ppsz_dir_list = NULL;
269 int i_ret;
271 if( (i_ret = vlclua_dir_list( luadirname, &ppsz_dir_list )) != VLC_SUCCESS)
272 return i_ret;
274 i_ret = VLC_EGENERIC;
275 for( char **ppsz_dir = ppsz_dir_list; *ppsz_dir; ppsz_dir++ )
277 char **ppsz_filelist;
279 msg_Dbg( p_this, "Trying Lua scripts in %s", *ppsz_dir );
280 int i_files = vlc_scandir( *ppsz_dir, &ppsz_filelist, file_select,
281 file_compare );
282 if( i_files < 0 )
283 continue;
285 char **ppsz_file = ppsz_filelist;
286 char **ppsz_fileend = ppsz_filelist + i_files;
288 while( ppsz_file < ppsz_fileend )
290 char *psz_filename;
292 if( asprintf( &psz_filename,
293 "%s" DIR_SEP "%s", *ppsz_dir, *ppsz_file ) == -1 )
294 psz_filename = NULL;
295 free( *(ppsz_file++) );
297 if( likely(psz_filename != NULL) )
299 msg_Dbg( p_this, "Trying Lua playlist script %s",
300 psz_filename );
301 i_ret = func( p_this, psz_filename, user_data );
302 free( psz_filename );
303 if( i_ret == VLC_SUCCESS )
304 break;
308 while( ppsz_file < ppsz_fileend )
309 free( *(ppsz_file++) );
310 free( ppsz_filelist );
312 if( i_ret == VLC_SUCCESS )
313 break;
315 vlclua_dir_list_free( ppsz_dir_list );
316 return i_ret;
319 char *vlclua_find_file( const char *psz_luadirname, const char *psz_name )
321 char **ppsz_dir_list = NULL;
322 vlclua_dir_list( psz_luadirname, &ppsz_dir_list );
324 for( char **ppsz_dir = ppsz_dir_list; *ppsz_dir; ppsz_dir++ )
326 for( const char **ppsz_ext = ppsz_lua_exts; *ppsz_ext; ppsz_ext++ )
328 char *psz_filename;
329 struct stat st;
331 if( asprintf( &psz_filename, "%s"DIR_SEP"%s%s", *ppsz_dir,
332 psz_name, *ppsz_ext ) < 0 )
334 vlclua_dir_list_free( ppsz_dir_list );
335 return NULL;
338 if( vlc_stat( psz_filename, &st ) == 0
339 && S_ISREG( st.st_mode ) )
341 vlclua_dir_list_free( ppsz_dir_list );
342 return psz_filename;
344 free( psz_filename );
347 vlclua_dir_list_free( ppsz_dir_list );
348 return NULL;
351 /*****************************************************************************
352 * Meta data setters utility.
353 * Playlist item table should be on top of the stack when these are called
354 *****************************************************************************/
355 #undef vlclua_read_meta_data
356 void vlclua_read_meta_data( vlc_object_t *p_this, lua_State *L,
357 input_item_t *p_input )
359 #define TRY_META( a, b ) \
360 lua_getfield( L, -1, a ); \
361 if( lua_isstring( L, -1 ) && \
362 strcmp( lua_tostring( L, -1 ), "" ) ) \
364 char *psz_value = strdup( lua_tostring( L, -1 ) ); \
365 EnsureUTF8( psz_value ); \
366 msg_Dbg( p_this, #b ": %s", psz_value ); \
367 input_item_Set ## b ( p_input, psz_value ); \
368 free( psz_value ); \
370 lua_pop( L, 1 ); /* pop a */
371 TRY_META( "title", Title );
372 TRY_META( "artist", Artist );
373 TRY_META( "genre", Genre );
374 TRY_META( "copyright", Copyright );
375 TRY_META( "album", Album );
376 TRY_META( "tracknum", TrackNum );
377 TRY_META( "description", Description );
378 TRY_META( "rating", Rating );
379 TRY_META( "date", Date );
380 TRY_META( "setting", Setting );
381 TRY_META( "url", URL );
382 TRY_META( "language", Language );
383 TRY_META( "nowplaying", NowPlaying );
384 TRY_META( "publisher", Publisher );
385 TRY_META( "encodedby", EncodedBy );
386 TRY_META( "arturl", ArtURL );
387 TRY_META( "trackid", TrackID );
390 #undef vlclua_read_custom_meta_data
391 void vlclua_read_custom_meta_data( vlc_object_t *p_this, lua_State *L,
392 input_item_t *p_input )
394 /* Lock the input item and create the meta table if needed */
395 vlc_mutex_lock( &p_input->lock );
397 if( !p_input->p_meta )
398 p_input->p_meta = vlc_meta_New();
400 /* ... item */
401 lua_getfield( L, -1, "meta" );
402 /* ... item meta */
403 if( lua_istable( L, -1 ) )
405 lua_pushnil( L );
406 /* ... item meta nil */
407 while( lua_next( L, -2 ) )
409 /* ... item meta key value */
410 if( !lua_isstring( L, -2 ) || !lua_isstring( L, -1 ) )
412 msg_Err( p_this, "'meta' keys and values must be strings");
413 lua_pop( L, 1 ); /* pop "value" */
414 continue;
416 const char *psz_key = lua_tostring( L, -2 );
417 const char *psz_value = lua_tostring( L, -1 );
419 vlc_meta_AddExtra( p_input->p_meta, psz_key, psz_value );
421 lua_pop( L, 1 ); /* pop "value" */
424 lua_pop( L, 1 ); /* pop "meta" */
425 /* ... item -> back to original stack */
427 vlc_mutex_unlock( &p_input->lock );
430 /*****************************************************************************
431 * Playlist utilities
432 ****************************************************************************/
434 * Playlist item table should be on top of the stack when this is called
436 #undef vlclua_read_options
437 void vlclua_read_options( vlc_object_t *p_this, lua_State *L,
438 int *pi_options, char ***pppsz_options )
440 lua_getfield( L, -1, "options" );
441 if( lua_istable( L, -1 ) )
443 lua_pushnil( L );
444 while( lua_next( L, -2 ) )
446 if( lua_isstring( L, -1 ) )
448 char *psz_option = strdup( lua_tostring( L, -1 ) );
449 msg_Dbg( p_this, "Option: %s", psz_option );
450 INSERT_ELEM( *pppsz_options, *pi_options, *pi_options,
451 psz_option );
453 else
455 msg_Warn( p_this, "Option should be a string" );
457 lua_pop( L, 1 ); /* pop option */
460 lua_pop( L, 1 ); /* pop "options" */
463 #undef vlclua_playlist_add_internal
464 int vlclua_playlist_add_internal( vlc_object_t *p_this, lua_State *L,
465 playlist_t *p_playlist,
466 input_item_t *p_parent, bool b_play )
468 int i_count = 0;
469 input_item_node_t *p_parent_node = NULL;
471 assert( p_parent || p_playlist );
473 /* playlist */
474 if( lua_istable( L, -1 ) )
476 if( p_parent ) p_parent_node = input_item_node_Create( p_parent );
477 lua_pushnil( L );
478 /* playlist nil */
479 while( lua_next( L, -2 ) )
481 /* playlist key item */
482 /* <Parse playlist item> */
483 if( lua_istable( L, -1 ) )
485 lua_getfield( L, -1, "path" );
486 /* playlist key item path */
487 if( lua_isstring( L, -1 ) )
489 const char *psz_path = NULL;
490 char *psz_u8path = NULL;
491 const char *psz_name = NULL;
492 char **ppsz_options = NULL;
493 int i_options = 0;
494 mtime_t i_duration = -1;
495 input_item_t *p_input;
497 /* Read path and name */
498 psz_path = lua_tostring( L, -1 );
499 msg_Dbg( p_this, "Path: %s", psz_path );
500 lua_getfield( L, -2, "name" );
501 /* playlist key item path name */
502 if( lua_isstring( L, -1 ) )
504 psz_name = lua_tostring( L, -1 );
505 msg_Dbg( p_this, "Name: %s", psz_name );
507 else
509 if( !lua_isnil( L, -1 ) )
510 msg_Warn( p_this, "Playlist item name should be a string." );
511 psz_name = NULL;
514 /* Read duration */
515 lua_getfield( L, -3, "duration" );
516 /* playlist key item path name duration */
517 if( lua_isnumber( L, -1 ) )
519 i_duration = (mtime_t)(lua_tonumber( L, -1 )*1e6);
521 else if( !lua_isnil( L, -1 ) )
523 msg_Warn( p_this, "Playlist item duration should be a number (in seconds)." );
525 lua_pop( L, 1 ); /* pop "duration" */
527 /* playlist key item path name */
529 /* Read options: item must be on top of stack */
530 lua_pushvalue( L, -3 );
531 /* playlist key item path name item */
532 vlclua_read_options( p_this, L, &i_options, &ppsz_options );
534 /* Create input item */
535 p_input = input_item_NewExt( psz_path, psz_name, i_options,
536 (const char **)ppsz_options,
537 VLC_INPUT_OPTION_TRUSTED,
538 i_duration );
539 lua_pop( L, 3 ); /* pop "path name item" */
540 /* playlist key item */
542 /* Read meta data: item must be on top of stack */
543 vlclua_read_meta_data( p_this, L, p_input );
545 /* Read custom meta data: item must be on top of stack*/
546 vlclua_read_custom_meta_data( p_this, L, p_input );
548 /* Append item to playlist */
549 if( p_parent ) /* Add to node */
551 input_item_CopyOptions( p_parent, p_input );
552 input_item_node_AppendItem( p_parent_node, p_input );
554 else /* Play or Enqueue (preparse) */
555 /* FIXME: playlist_AddInput() can fail */
556 playlist_AddInput( p_playlist, p_input,
557 PLAYLIST_APPEND |
558 ( b_play ? PLAYLIST_GO : PLAYLIST_PREPARSE ),
559 PLAYLIST_END, true, false );
560 i_count ++; /* increment counter */
561 vlc_gc_decref( p_input );
562 while( i_options > 0 )
563 free( ppsz_options[--i_options] );
564 free( ppsz_options );
565 free( psz_u8path );
567 else
569 lua_pop( L, 1 ); /* pop "path" */
570 msg_Warn( p_this,
571 "Playlist item's path should be a string" );
573 /* playlist key item */
575 else
577 msg_Warn( p_this, "Playlist item should be a table" );
579 /* <Parse playlist item> */
580 lua_pop( L, 1 ); /* pop the value, keep the key for
581 * the next lua_next() call */
582 /* playlist key */
584 /* playlist */
585 if( p_parent )
587 if( i_count ) input_item_node_PostAndDelete( p_parent_node );
588 else input_item_node_Delete( p_parent_node );
591 else
593 msg_Warn( p_this, "Playlist should be a table." );
595 return i_count;
598 static int vlc_sd_probe_Open( vlc_object_t *obj )
600 vlc_probe_t *probe = (vlc_probe_t *)obj;
601 char **ppsz_filelist = NULL;
602 char **ppsz_fileend = NULL;
603 char **ppsz_file;
604 char *psz_name;
605 char **ppsz_dir_list = NULL;
606 char **ppsz_dir;
607 lua_State *L = NULL;
608 vlclua_dir_list( "sd", &ppsz_dir_list );
609 for( ppsz_dir = ppsz_dir_list; *ppsz_dir; ppsz_dir++ )
611 int i_files;
612 if( ppsz_filelist )
614 for( ppsz_file = ppsz_filelist; ppsz_file < ppsz_fileend;
615 ppsz_file++ )
616 free( *ppsz_file );
617 free( ppsz_filelist );
618 ppsz_filelist = NULL;
620 i_files = vlc_scandir( *ppsz_dir, &ppsz_filelist, file_select,
621 file_compare );
622 if( i_files < 1 ) continue;
623 ppsz_fileend = ppsz_filelist + i_files;
624 for( ppsz_file = ppsz_filelist; ppsz_file < ppsz_fileend; ppsz_file++ )
626 char *psz_filename;
627 if( asprintf( &psz_filename,
628 "%s" DIR_SEP "%s", *ppsz_dir, *ppsz_file ) < 0 )
630 goto error;
632 L = luaL_newstate();
633 if( !L )
635 msg_Err( probe, "Could not create new Lua State" );
636 free( psz_filename );
637 goto error;
639 luaL_openlibs( L );
640 if( vlclua_add_modules_path( L, psz_filename ) )
642 msg_Err( probe, "Error while setting the module search path for %s",
643 psz_filename );
644 free( psz_filename );
645 goto error;
647 if( luaL_dofile( L, psz_filename ) )
650 msg_Err( probe, "Error loading script %s: %s", psz_filename,
651 lua_tostring( L, lua_gettop( L ) ) );
652 lua_pop( L, 1 );
653 free( psz_filename );
654 lua_close( L );
655 continue;
657 char *psz_longname;
658 char *temp = strchr( *ppsz_file, '.' );
659 if( temp )
660 *temp = '\0';
661 lua_getglobal( L, "descriptor" );
662 if( !lua_isfunction( L, lua_gettop( L ) ) || lua_pcall( L, 0, 1, 0 ) )
664 msg_Warn( probe, "No 'descriptor' function in '%s'", psz_filename );
665 lua_pop( L, 1 );
666 if( !( psz_longname = strdup( *ppsz_file ) ) )
668 free( psz_filename );
669 goto error;
672 else
674 lua_getfield( L, -1, "title" );
675 if( !lua_isstring( L, -1 ) ||
676 !( psz_longname = strdup( lua_tostring( L, -1 ) ) ) )
678 free( psz_filename );
679 goto error;
683 char *psz_file_esc = config_StringEscape( *ppsz_file );
684 char *psz_longname_esc = config_StringEscape( psz_longname );
685 if( asprintf( &psz_name, "lua{sd='%s',longname='%s'}",
686 psz_file_esc, psz_longname_esc ) < 0 )
688 free( psz_file_esc );
689 free( psz_longname_esc );
690 free( psz_filename );
691 free( psz_longname );
692 goto error;
694 free( psz_file_esc );
695 free( psz_longname_esc );
696 vlc_sd_probe_Add( probe, psz_name, psz_longname, SD_CAT_INTERNET );
697 free( psz_name );
698 free( psz_longname );
699 free( psz_filename );
700 lua_close( L );
703 if( ppsz_filelist )
705 for( ppsz_file = ppsz_filelist; ppsz_file < ppsz_fileend;
706 ppsz_file++ )
707 free( *ppsz_file );
708 free( ppsz_filelist );
710 vlclua_dir_list_free( ppsz_dir_list );
711 return VLC_PROBE_CONTINUE;
712 error:
713 if( ppsz_filelist )
715 for( ppsz_file = ppsz_filelist; ppsz_file < ppsz_fileend;
716 ppsz_file++ )
717 free( *ppsz_file );
718 free( ppsz_filelist );
720 if( L )
721 lua_close( L );
722 vlclua_dir_list_free( ppsz_dir_list );
723 return VLC_ENOMEM;
726 static int vlclua_add_modules_path_inner( lua_State *L, const char *psz_path )
728 int count = 0;
729 for( const char **ppsz_ext = ppsz_lua_exts; *ppsz_ext; ppsz_ext++ )
731 lua_pushfstring( L, "%s"DIR_SEP"modules"DIR_SEP"?%s;",
732 psz_path, *ppsz_ext );
733 count ++;
736 return count;
739 int vlclua_add_modules_path( lua_State *L, const char *psz_filename )
741 /* Setup the module search path:
742 * * "The script's directory"/modules
743 * * "The script's parent directory"/modules
744 * * and so on for all the next directories in the directory list
746 char *psz_path = strdup( psz_filename );
747 if( !psz_path )
748 return 1;
750 char *psz_char = strrchr( psz_path, DIR_SEP_CHAR );
751 if( !psz_char )
753 free( psz_path );
754 return 1;
756 *psz_char = '\0';
758 /* psz_path now holds the file's directory */
759 psz_char = strrchr( psz_path, DIR_SEP_CHAR );
760 if( !psz_char )
762 free( psz_path );
763 return 1;
765 *psz_char = '\0';
767 /* Push package on stack */
768 int count = 0;
769 lua_getglobal( L, "package" );
771 /* psz_path now holds the file's parent directory */
772 count += vlclua_add_modules_path_inner( L, psz_path );
773 *psz_char = DIR_SEP_CHAR;
775 /* psz_path now holds the file's directory */
776 count += vlclua_add_modules_path_inner( L, psz_path );
778 char **ppsz_dir_list = NULL;
779 vlclua_dir_list( psz_char+1/* gruik? */, &ppsz_dir_list );
780 char **ppsz_dir = ppsz_dir_list;
782 for( ; *ppsz_dir && strcmp( *ppsz_dir, psz_path ); ppsz_dir++ );
783 free( psz_path );
785 for( ; *ppsz_dir; ppsz_dir++ )
787 psz_path = *ppsz_dir;
788 /* FIXME: doesn't work well with meta/... modules due to the double
789 * directory depth */
790 psz_char = strrchr( psz_path, DIR_SEP_CHAR );
791 if( !psz_char )
793 vlclua_dir_list_free( ppsz_dir_list );
794 return 1;
797 *psz_char = '\0';
798 count += vlclua_add_modules_path_inner( L, psz_path );
799 *psz_char = DIR_SEP_CHAR;
800 count += vlclua_add_modules_path_inner( L, psz_path );
803 lua_getfield( L, -(count+1), "path" ); /* Get package.path */
804 lua_concat( L, count+1 ); /* Concat vlc module paths and package.path */
805 lua_setfield( L, -2, "path"); /* Set package.path */
806 lua_pop( L, 1 ); /* Pop the package module */
808 vlclua_dir_list_free( ppsz_dir_list );
809 return 0;
812 /** Replacement for luaL_dofile, using VLC's input capabilities */
813 int vlclua_dofile( vlc_object_t *p_this, lua_State *L, const char *uri )
815 if( !strstr( uri, "://" ) )
816 return luaL_dofile( L, uri );
817 if( !strncasecmp( uri, "file://", 7 ) )
818 return luaL_dofile( L, uri + 7 );
819 stream_t *s = stream_UrlNew( p_this, uri );
820 if( !s )
822 return 1;
824 int64_t i_size = stream_Size( s );
825 char *p_buffer = ( i_size > 0 ) ? malloc( i_size ) : NULL;
826 if( !p_buffer )
828 // FIXME: read the whole stream until we reach the end (if no size)
829 stream_Delete( s );
830 return 1;
832 int64_t i_read = stream_Read( s, p_buffer, (int) i_size );
833 int i_ret = ( i_read == i_size ) ? 0 : 1;
834 if( !i_ret )
835 i_ret = luaL_loadbuffer( L, p_buffer, (size_t) i_size, uri );
836 if( !i_ret )
837 i_ret = lua_pcall( L, 0, LUA_MULTRET, 0 );
838 stream_Delete( s );
839 free( p_buffer );
840 return i_ret;