1 /*****************************************************************************
2 * vlc.c: Generic lua interface functions
3 *****************************************************************************
4 * Copyright (C) 2007-2008 the VideoLAN team
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 /*****************************************************************************
27 *****************************************************************************/
38 #include <vlc_common.h>
39 #include <vlc_plugin.h>
41 #include <vlc_charset.h>
44 #include <vlc_services_discovery.h>
47 #include <lua.h> /* Low level lua C API */
48 #include <lauxlib.h> /* Higher level C API */
49 #include <lualib.h> /* Lua libs */
53 /*****************************************************************************
55 *****************************************************************************/
56 #define INTF_TEXT N_("Lua interface")
57 #define INTF_LONGTEXT N_("Lua interface module to load")
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 #define HOST_TEXT N_( "Host address" )
62 #define HOST_LONGTEXT N_( \
63 "Address and port the HTTP interface will listen on. It defaults to " \
64 "all network interfaces (0.0.0.0)." \
65 " If you want the HTTP interface to be available only on the local " \
66 "machine, enter 127.0.0.1" )
67 #define SRC_TEXT N_( "Source directory" )
68 #define SRC_LONGTEXT N_( "Source directory" )
69 #define INDEX_TEXT N_( "Directory index" )
70 #define INDEX_LONGTEXT N_( "Allow to build directory index" )
72 #define TELNETHOST_TEXT N_( "Host" )
73 #define TELNETHOST_LONGTEXT N_( "This is the host on which the " \
74 "interface will listen. It defaults to all network interfaces (0.0.0.0)." \
75 " If you want this interface to be available only on the local " \
76 "machine, enter \"127.0.0.1\"." )
77 #define TELNETPORT_TEXT N_( "Port" )
78 #define TELNETPORT_LONGTEXT N_( "This is the TCP port on which this " \
79 "interface will listen. It defaults to 4212." )
80 #define TELNETPORT_DEFAULT 4212
81 #define TELNETPWD_TEXT N_( "Password" )
82 #define TELNETPWD_LONGTEXT N_( "A single administration password is used " \
83 "to protect this interface. The default value is \"admin\"." )
84 #define TELNETPWD_DEFAULT "admin"
85 #define RCHOST_TEXT N_("TCP command input")
86 #define RCHOST_LONGTEXT N_("Accept commands over a socket rather than stdin. " \
87 "You can set the address and port the interface will bind to." )
89 static int vlc_sd_probe_Open( vlc_object_t
* );
92 set_shortname( N_("Lua Interface Module") )
93 set_description( N_("Interfaces implemented using lua scripts") )
94 add_shortcut( "luaintf" )
95 add_shortcut( "luahttp" )
96 /* add_shortcut( "http" ) */
97 add_shortcut( "luatelnet" )
98 add_shortcut( "telnet" )
99 add_shortcut( "luahotkeys" )
100 /* add_shortcut( "hotkeys" ) */
101 set_capability( "interface", 0 )
102 set_category( CAT_INTERFACE
)
103 set_subcategory( SUBCAT_INTERFACE_CONTROL
)
104 add_string( "lua-intf", "dummy", NULL
,
105 INTF_TEXT
, INTF_LONGTEXT
, false )
106 add_string( "lua-config", "", NULL
,
107 CONFIG_TEXT
, CONFIG_LONGTEXT
, false )
108 set_section( N_("Lua HTTP"), 0 )
109 add_string ( "http-host", NULL
, NULL
, HOST_TEXT
, HOST_LONGTEXT
, true )
110 add_string ( "http-src", NULL
, NULL
, SRC_TEXT
, SRC_LONGTEXT
, true )
111 add_bool ( "http-index", false, NULL
, INDEX_TEXT
, INDEX_LONGTEXT
, true )
112 set_section( N_("Lua RC"), 0 )
113 add_string( "rc-host", NULL
, NULL
, RCHOST_TEXT
, RCHOST_LONGTEXT
, true )
114 set_section( N_("Lua Telnet"), 0 )
115 add_string( "telnet-host", "localhost", NULL
, TELNETHOST_TEXT
,
116 TELNETHOST_LONGTEXT
, true )
117 add_integer( "telnet-port", TELNETPORT_DEFAULT
, NULL
, TELNETPORT_TEXT
,
118 TELNETPORT_LONGTEXT
, true )
119 add_password( "telnet-password", TELNETPWD_DEFAULT
, NULL
, TELNETPWD_TEXT
,
120 TELNETPWD_LONGTEXT
, true )
122 set_callbacks( Open_LuaIntf
, Close_LuaIntf
)
125 set_shortname( N_( "Lua Meta Fetcher" ) )
126 set_description( N_("Fetch meta data using lua scripts") )
127 set_capability( "meta fetcher", 10 )
128 set_callbacks( FetchMeta
, NULL
)
131 set_shortname( N_( "Lua Meta Reader" ) )
132 set_description( N_("Read meta data using lua scripts") )
133 set_capability( "meta reader", 10 )
134 set_callbacks( ReadMeta
, NULL
)
137 add_shortcut( "luaplaylist" )
138 set_shortname( N_("Lua Playlist") )
139 set_description( N_("Lua Playlist Parser Interface") )
140 set_capability( "demux", 2 )
141 set_callbacks( Import_LuaPlaylist
, Close_LuaPlaylist
)
144 set_description( N_("Lua Interface Module (shortcuts)") )
145 add_shortcut( "luarc" )
147 set_capability( "interface", 25 )
148 set_callbacks( Open_LuaIntf
, Close_LuaIntf
)
151 set_shortname( N_( "Lua Art" ) )
152 set_description( N_("Fetch artwork using lua scripts") )
153 set_capability( "art finder", 10 )
154 set_callbacks( FindArt
, NULL
)
157 set_shortname( N_("Lua Extension") )
158 add_shortcut( "luaextension" )
159 set_capability( "extension", 1 )
160 set_callbacks( Open_Extension
, Close_Extension
)
163 set_description( N_("Lua SD Module") )
164 add_shortcut( "luasd" )
165 set_capability( "services_discovery", 0 )
166 add_string( "lua-sd", "", NULL
, NULL
, NULL
, false )
168 add_string( "lua-longname", "", NULL
, NULL
, NULL
, false )
170 set_callbacks( Open_LuaSD
, Close_LuaSD
)
173 set_description( N_("Freebox TV") )
174 add_shortcut( "freebox" )
175 set_capability( "services_discovery", 0 )
176 set_callbacks( Open_LuaSD
, Close_LuaSD
)
179 set_description( N_("French TV") )
180 add_shortcut( "frenchtv" )
181 set_capability( "services_discovery", 0 )
182 set_callbacks( Open_LuaSD
, Close_LuaSD
)
184 VLC_SD_PROBE_SUBMODULE
188 /*****************************************************************************
190 *****************************************************************************/
191 static const char *ppsz_lua_exts
[] = { ".luac", ".lua", NULL
};
192 static int file_select( const char *file
)
194 int i
= strlen( file
);
196 for( j
= 0; ppsz_lua_exts
[j
]; j
++ )
198 int l
= strlen( ppsz_lua_exts
[j
] );
199 if( i
>= l
&& !strcmp( file
+i
-l
, ppsz_lua_exts
[j
] ) )
205 static int file_compare( const char **a
, const char **b
)
207 return strcmp( *a
, *b
);
210 int vlclua_dir_list( vlc_object_t
*p_this
, const char *luadirname
,
211 char ***pppsz_dir_list
)
213 #define MAX_DIR_LIST_SIZE 5
214 *pppsz_dir_list
= malloc(MAX_DIR_LIST_SIZE
*sizeof(char *));
215 if (!*pppsz_dir_list
)
217 char **ppsz_dir_list
= *pppsz_dir_list
;
220 char *datadir
= config_GetUserDir( VLC_DATA_DIR
);
222 if( likely(datadir
!= NULL
)
223 && likely(asprintf( &ppsz_dir_list
[i
], "%s"DIR_SEP
"lua"DIR_SEP
"%s",
224 datadir
, luadirname
) != -1) )
228 #if !(defined(__APPLE__) || defined(SYS_BEOS) || defined(WIN32))
229 if( likely(asprintf( &ppsz_dir_list
[i
], "%s"DIR_SEP
"lua"DIR_SEP
"%s",
230 config_GetLibDir(), luadirname
) != -1) )
234 char *psz_datapath
= config_GetDataDir( p_this
);
235 if( likely(psz_datapath
!= NULL
) )
237 if( likely(asprintf( &ppsz_dir_list
[i
], "%s"DIR_SEP
"lua"DIR_SEP
"%s",
238 psz_datapath
, luadirname
) != -1) )
241 #if defined(__APPLE__) || defined(SYS_BEOS)
242 if( likely(asprintf( &ppsz_dir_list
[i
],
243 "%s"DIR_SEP
"share"DIR_SEP
"lua"DIR_SEP
"%s",
244 psz_datapath
, luadirname
) != -1) )
247 free( psz_datapath
);
250 ppsz_dir_list
[i
] = NULL
;
252 assert( i
< MAX_DIR_LIST_SIZE
);
257 void vlclua_dir_list_free( char **ppsz_dir_list
)
260 for( ppsz_dir
= ppsz_dir_list
; *ppsz_dir
; ppsz_dir
++ )
262 free( ppsz_dir_list
);
265 /*****************************************************************************
266 * Will execute func on all scripts in luadirname, and stop if func returns
268 *****************************************************************************/
269 int vlclua_scripts_batch_execute( vlc_object_t
*p_this
,
270 const char * luadirname
,
271 int (*func
)(vlc_object_t
*, const char *, void *),
274 char **ppsz_dir_list
= NULL
;
276 int i_ret
= vlclua_dir_list( p_this
, luadirname
, &ppsz_dir_list
);
277 if( i_ret
!= VLC_SUCCESS
)
279 i_ret
= VLC_EGENERIC
;
281 for( char **ppsz_dir
= ppsz_dir_list
; *ppsz_dir
; ppsz_dir
++ )
283 char **ppsz_filelist
;
286 msg_Dbg( p_this
, "Trying Lua scripts in %s", *ppsz_dir
);
287 i_files
= vlc_scandir( *ppsz_dir
, &ppsz_filelist
, file_select
,
292 char **ppsz_file
= ppsz_filelist
;
293 char **ppsz_fileend
= ppsz_filelist
+ i_files
;
295 while( ppsz_file
< ppsz_fileend
)
299 if( asprintf( &psz_filename
,
300 "%s" DIR_SEP
"%s", *ppsz_dir
, *ppsz_file
) == -1 )
302 free( *(ppsz_file
++) );
304 if( likely(psz_filename
!= NULL
) )
306 msg_Dbg( p_this
, "Trying Lua playlist script %s",
308 i_ret
= func( p_this
, psz_filename
, user_data
);
309 free( psz_filename
);
310 if( i_ret
== VLC_SUCCESS
)
315 while( ppsz_file
< ppsz_fileend
)
316 free( *(ppsz_file
++) );
317 free( ppsz_filelist
);
319 if( i_ret
== VLC_SUCCESS
)
322 vlclua_dir_list_free( ppsz_dir_list
);
326 char *vlclua_find_file( vlc_object_t
*p_this
, const char *psz_luadirname
, const char *psz_name
)
328 char **ppsz_dir_list
= NULL
;
330 vlclua_dir_list( p_this
, psz_luadirname
, &ppsz_dir_list
);
331 for( ppsz_dir
= ppsz_dir_list
; *ppsz_dir
; ppsz_dir
++ )
333 for( const char **ppsz_ext
= ppsz_lua_exts
; *ppsz_ext
; ppsz_ext
++ )
338 if( asprintf( &psz_filename
, "%s"DIR_SEP
"%s%s", *ppsz_dir
,
339 psz_name
, *ppsz_ext
) < 0 )
341 vlclua_dir_list_free( ppsz_dir_list
);
345 if( vlc_stat( psz_filename
, &st
) == 0
346 && S_ISREG( st
.st_mode
) )
348 vlclua_dir_list_free( ppsz_dir_list
);
351 free( psz_filename
);
354 vlclua_dir_list_free( ppsz_dir_list
);
358 /*****************************************************************************
359 * Meta data setters utility.
360 * Playlist item table should be on top of the stack when these are called
361 *****************************************************************************/
362 void __vlclua_read_meta_data( vlc_object_t
*p_this
, lua_State
*L
,
363 input_item_t
*p_input
)
365 #define TRY_META( a, b ) \
366 lua_getfield( L, -1, a ); \
367 if( lua_isstring( L, -1 ) && \
368 strcmp( lua_tostring( L, -1 ), "" ) ) \
370 char *psz_value = strdup( lua_tostring( L, -1 ) ); \
371 EnsureUTF8( psz_value ); \
372 msg_Dbg( p_this, #b ": %s", psz_value ); \
373 input_item_Set ## b ( p_input, psz_value ); \
376 lua_pop( L, 1 ); /* pop a */
377 TRY_META( "title", Title
);
378 TRY_META( "artist", Artist
);
379 TRY_META( "genre", Genre
);
380 TRY_META( "copyright", Copyright
);
381 TRY_META( "album", Album
);
382 TRY_META( "tracknum", TrackNum
);
383 TRY_META( "description", Description
);
384 TRY_META( "rating", Rating
);
385 TRY_META( "date", Date
);
386 TRY_META( "setting", Setting
);
387 TRY_META( "url", URL
);
388 TRY_META( "language", Language
);
389 TRY_META( "nowplaying", NowPlaying
);
390 TRY_META( "publisher", Publisher
);
391 TRY_META( "encodedby", EncodedBy
);
392 TRY_META( "arturl", ArtURL
);
393 TRY_META( "trackid", TrackID
);
396 void __vlclua_read_custom_meta_data( vlc_object_t
*p_this
, lua_State
*L
,
397 input_item_t
*p_input
)
400 lua_getfield( L
, -1, "meta" );
402 if( lua_istable( L
, -1 ) )
405 /* ... item meta nil */
406 while( lua_next( L
, -2 ) )
408 /* ... item meta key value */
409 if( !lua_isstring( L
, -2 ) )
411 msg_Warn( p_this
, "Custom meta data category name must be "
414 else if( !lua_istable( L
, -1 ) )
416 msg_Warn( p_this
, "Custom meta data category contents "
421 const char *psz_meta_category
= lua_tostring( L
, -2 );
422 msg_Dbg( p_this
, "Found custom meta data category: %s",
425 /* ... item meta key value nil */
426 while( lua_next( L
, -2 ) )
428 /* ... item meta key value key2 value2 */
429 if( !lua_isstring( L
, -2 ) )
431 msg_Warn( p_this
, "Custom meta category item name "
432 "must be a string." );
434 else if( !lua_isstring( L
, -1 ) )
436 msg_Warn( p_this
, "Custom meta category item value "
437 "must be a string." );
441 const char *psz_meta_name
=
442 lua_tostring( L
, -2 );
443 const char *psz_meta_value
=
444 lua_tostring( L
, -1 );
445 msg_Dbg( p_this
, "Custom meta %s, %s: %s",
446 psz_meta_category
, psz_meta_name
,
448 input_item_AddInfo( p_input
, psz_meta_category
,
449 psz_meta_name
, "%s", psz_meta_value
);
451 lua_pop( L
, 1 ); /* pop item */
452 /* ... item meta key value key2 */
454 /* ... item meta key value */
456 lua_pop( L
, 1 ); /* pop category */
457 /* ... item meta key */
461 lua_pop( L
, 1 ); /* pop "meta" */
462 /* ... item -> back to original stack */
465 /*****************************************************************************
467 ****************************************************************************/
469 * Playlist item table should be on top of the stack when this is called
471 void __vlclua_read_options( vlc_object_t
*p_this
, lua_State
*L
,
472 int *pi_options
, char ***pppsz_options
)
474 lua_getfield( L
, -1, "options" );
475 if( lua_istable( L
, -1 ) )
478 while( lua_next( L
, -2 ) )
480 if( lua_isstring( L
, -1 ) )
482 char *psz_option
= strdup( lua_tostring( L
, -1 ) );
483 msg_Dbg( p_this
, "Option: %s", psz_option
);
484 INSERT_ELEM( *pppsz_options
, *pi_options
, *pi_options
,
489 msg_Warn( p_this
, "Option should be a string" );
491 lua_pop( L
, 1 ); /* pop option */
494 lua_pop( L
, 1 ); /* pop "options" */
497 int __vlclua_playlist_add_internal( vlc_object_t
*p_this
, lua_State
*L
,
498 playlist_t
*p_playlist
,
499 input_item_t
*p_parent
, bool b_play
)
502 input_item_node_t
*p_parent_node
= NULL
;
504 assert( p_parent
|| p_playlist
);
507 if( lua_istable( L
, -1 ) )
509 if( p_parent
) p_parent_node
= input_item_node_Create( p_parent
);
512 while( lua_next( L
, -2 ) )
514 /* playlist key item */
515 /* <Parse playlist item> */
516 if( lua_istable( L
, -1 ) )
518 lua_getfield( L
, -1, "path" );
519 /* playlist key item path */
520 if( lua_isstring( L
, -1 ) )
522 const char *psz_path
= NULL
;
523 const char *psz_name
= NULL
;
524 char **ppsz_options
= NULL
;
526 mtime_t i_duration
= -1;
527 input_item_t
*p_input
;
529 /* Read path and name */
530 psz_path
= lua_tostring( L
, -1 );
531 msg_Dbg( p_this
, "Path: %s", psz_path
);
532 lua_getfield( L
, -2, "name" );
533 /* playlist key item path name */
534 if( lua_isstring( L
, -1 ) )
536 psz_name
= lua_tostring( L
, -1 );
537 msg_Dbg( p_this
, "Name: %s", psz_name
);
541 if( !lua_isnil( L
, -1 ) )
542 msg_Warn( p_this
, "Playlist item name should be a string." );
547 lua_getfield( L
, -3, "duration" );
548 /* playlist key item path name duration */
549 if( lua_isnumber( L
, -1 ) )
551 i_duration
= (mtime_t
)(lua_tonumber( L
, -1 )*1e6
);
553 else if( !lua_isnil( L
, -1 ) )
555 msg_Warn( p_this
, "Playlist item duration should be a number (in seconds)." );
557 lua_pop( L
, 1 ); /* pop "duration" */
559 /* playlist key item path name */
561 /* Read options: item must be on top of stack */
562 lua_pushvalue( L
, -3 );
563 /* playlist key item path name item */
564 vlclua_read_options( p_this
, L
, &i_options
, &ppsz_options
);
566 /* Create input item */
567 p_input
= input_item_NewExt( p_playlist
, psz_path
,
569 (const char **)ppsz_options
,
570 VLC_INPUT_OPTION_TRUSTED
,
572 lua_pop( L
, 3 ); /* pop "path name item" */
573 /* playlist key item */
575 /* Read meta data: item must be on top of stack */
576 vlclua_read_meta_data( p_this
, L
, p_input
);
578 /* Read custom meta data: item must be on top of stack*/
579 vlclua_read_custom_meta_data( p_this
, L
, p_input
);
581 /* Append item to playlist */
582 if( p_parent
) /* Add to node */
584 input_item_node_AppendItem( p_parent_node
, p_input
);
586 else /* Play or Enqueue (preparse) */
587 /* FIXME: playlist_AddInput() can fail */
588 playlist_AddInput( p_playlist
, p_input
,
590 ( b_play
? PLAYLIST_GO
: PLAYLIST_PREPARSE
),
591 PLAYLIST_END
, true, false );
592 i_count
++; /* increment counter */
593 vlc_gc_decref( p_input
);
594 while( i_options
> 0 )
595 free( ppsz_options
[--i_options
] );
596 free( ppsz_options
);
600 lua_pop( L
, 1 ); /* pop "path" */
602 "Playlist item's path should be a string" );
604 /* playlist key item */
608 msg_Warn( p_this
, "Playlist item should be a table" );
610 /* <Parse playlist item> */
611 lua_pop( L
, 1 ); /* pop the value, keep the key for
612 * the next lua_next() call */
618 if( i_count
) input_item_node_PostAndDelete( p_parent_node
);
619 else input_item_node_Delete( p_parent_node
);
624 msg_Warn( p_this
, "Playlist should be a table." );
629 static int vlc_sd_probe_Open( vlc_object_t
*obj
)
631 vlc_probe_t
*probe
= (vlc_probe_t
*)obj
;
632 char **ppsz_filelist
= NULL
;
633 char **ppsz_fileend
= NULL
;
636 char **ppsz_dir_list
= NULL
;
639 vlclua_dir_list( obj
, "sd", &ppsz_dir_list
);
640 for( ppsz_dir
= ppsz_dir_list
; *ppsz_dir
; ppsz_dir
++ )
645 for( ppsz_file
= ppsz_filelist
; ppsz_file
< ppsz_fileend
;
648 free( ppsz_filelist
);
649 ppsz_filelist
= NULL
;
651 i_files
= vlc_scandir( *ppsz_dir
, &ppsz_filelist
, file_select
,
653 if( i_files
< 1 ) continue;
654 ppsz_fileend
= ppsz_filelist
+ i_files
;
655 for( ppsz_file
= ppsz_filelist
; ppsz_file
< ppsz_fileend
; ppsz_file
++ )
658 if( asprintf( &psz_filename
,
659 "%s" DIR_SEP
"%s", *ppsz_dir
, *ppsz_file
) < 0 )
666 msg_Err( probe
, "Could not create new Lua State" );
667 free( psz_filename
);
671 if( vlclua_add_modules_path( probe
, L
, psz_filename
) )
673 msg_Err( probe
, "Error while setting the module search path for %s",
675 free( psz_filename
);
678 if( luaL_dofile( L
, psz_filename
) )
681 msg_Err( probe
, "Error loading script %s: %s", psz_filename
,
682 lua_tostring( L
, lua_gettop( L
) ) );
684 free( psz_filename
);
689 char *temp
= strchr( *ppsz_file
, '.' );
692 lua_getglobal( L
, "descriptor" );
693 if( !lua_isfunction( L
, lua_gettop( L
) ) || lua_pcall( L
, 0, 1, 0 ) )
695 msg_Warn( probe
, "No 'descriptor' function in '%s'", psz_filename
);
697 if( !( psz_longname
= strdup( *ppsz_file
) ) )
699 free( psz_filename
);
705 lua_getfield( L
, -1, "title" );
706 if( !lua_isstring( L
, -1 ) ||
707 !( psz_longname
= strdup( lua_tostring( L
, -1 ) ) ) )
709 free( psz_filename
);
714 char *psz_file_esc
= config_StringEscape( *ppsz_file
);
715 char *psz_longname_esc
= config_StringEscape( psz_longname
);
716 if( asprintf( &psz_name
, "lua{sd='%s',longname='%s'}",
717 psz_file_esc
, psz_longname_esc
) < 0 )
719 free( psz_file_esc
);
720 free( psz_longname_esc
);
721 free( psz_filename
);
722 free( psz_longname
);
725 free( psz_file_esc
);
726 free( psz_longname_esc
);
727 vlc_sd_probe_Add( probe
, psz_name
, psz_longname
, SD_CAT_INTERNET
);
729 free( psz_longname
);
730 free( psz_filename
);
736 for( ppsz_file
= ppsz_filelist
; ppsz_file
< ppsz_fileend
;
739 free( ppsz_filelist
);
741 vlclua_dir_list_free( ppsz_dir_list
);
742 return VLC_PROBE_CONTINUE
;
746 for( ppsz_file
= ppsz_filelist
; ppsz_file
< ppsz_fileend
;
749 free( ppsz_filelist
);
753 vlclua_dir_list_free( ppsz_dir_list
);
757 static int vlclua_add_modules_path_inner( lua_State
*L
, const char *psz_path
)
760 for( const char **ppsz_ext
= ppsz_lua_exts
; *ppsz_ext
; ppsz_ext
++ )
762 lua_pushfstring( L
, "%s"DIR_SEP
"modules"DIR_SEP
"?%s;",
763 psz_path
, *ppsz_ext
);
770 int __vlclua_add_modules_path( vlc_object_t
*obj
, lua_State
*L
, const char *psz_filename
)
772 /* Setup the module search path:
773 * * "The script's directory"/modules
774 * * "The script's parent directory"/modules
775 * * and so on for all the next directories in the directory list
777 char *psz_path
= strdup( psz_filename
);
781 char *psz_char
= strrchr( psz_path
, DIR_SEP_CHAR
);
789 /* psz_path now holds the file's directory */
790 psz_char
= strrchr( psz_path
, DIR_SEP_CHAR
);
798 /* Push package on stack */
800 lua_getglobal( L
, "package" );
802 /* psz_path now holds the file's parent directory */
803 count
+= vlclua_add_modules_path_inner( L
, psz_path
);
804 *psz_char
= DIR_SEP_CHAR
;
806 /* psz_path now holds the file's directory */
807 count
+= vlclua_add_modules_path_inner( L
, psz_path
);
809 char **ppsz_dir_list
= NULL
;
810 vlclua_dir_list( obj
, psz_char
+1/* gruik? */, &ppsz_dir_list
);
811 char **ppsz_dir
= ppsz_dir_list
;
813 for( ; *ppsz_dir
&& strcmp( *ppsz_dir
, psz_path
); ppsz_dir
++ );
816 for( ; *ppsz_dir
; ppsz_dir
++ )
818 psz_path
= *ppsz_dir
;
819 /* FIXME: doesn't work well with meta/... modules due to the double
821 psz_char
= strrchr( psz_path
, DIR_SEP_CHAR
);
824 vlclua_dir_list_free( ppsz_dir_list
);
829 count
+= vlclua_add_modules_path_inner( L
, psz_path
);
830 *psz_char
= DIR_SEP_CHAR
;
831 count
+= vlclua_add_modules_path_inner( L
, psz_path
);
834 lua_getfield( L
, -(count
+1), "path" ); /* Get package.path */
835 lua_concat( L
, count
+1 ); /* Concat vlc module paths and package.path */
836 lua_setfield( L
, -2, "path"); /* Set package.path */
837 lua_pop( L
, 1 ); /* Pop the package module */
839 vlclua_dir_list_free( ppsz_dir_list
);