Commit c368d560 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Lua: use submodules for the different interfaces

This is better than second-guessing module_need().
parent a37c2d29
...@@ -36,6 +36,7 @@ ...@@ -36,6 +36,7 @@
#include <vlc_interface.h> #include <vlc_interface.h>
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <assert.h>
#include <lua.h> /* Low level lua C API */ #include <lua.h> /* Low level lua C API */
#include <lauxlib.h> /* Higher level C API */ #include <lauxlib.h> /* Higher level C API */
...@@ -62,70 +63,6 @@ static inline void luaL_register_submodule( lua_State *L, const char *psz_name, ...@@ -62,70 +63,6 @@ static inline void luaL_register_submodule( lua_State *L, const char *psz_name,
lua_setfield( L, -2, psz_name ); lua_setfield( L, -2, psz_name );
} }
static const struct
{
const char *psz_shortcut;
const char *psz_name;
} pp_shortcuts[] = {
{ "luacli", "cli" },
{ "luarc", "cli" },
#ifndef WIN32
{ "cli", "cli" },
{ "rc", "cli" },
#endif
{ "luahotkeys", "hotkeys" },
/* { "hotkeys", "hotkeys" }, */
{ "luatelnet", "telnet" },
{ "telnet", "telnet" },
{ "luahttp", "http" },
{ "http", "http" },
{ NULL, NULL } };
static const char *WordInList( const char *psz_list, const char *psz_word )
{
for( ;; )
{
const char *end = strchr( psz_list, ',' );
if( end == NULL )
break;
if( !strncmp( psz_list, psz_word, end - psz_list ) )
return psz_list;
psz_list = end + 1;
}
return !strcmp( psz_list, psz_word ) ? psz_list : NULL;
}
static char *GetModuleName( intf_thread_t *p_intf )
{
int i;
const char *psz_intf;
/*if( *p_intf->psz_intf == '$' )
psz_intf = var_GetString( p_intf, p_intf->psz_intf+1 );
else*/
psz_intf = p_intf->psz_intf;
int i_candidate = -1;
const char *psz_candidate = NULL;
for( i = 0; pp_shortcuts[i].psz_name; i++ )
{
const char *psz_match;
if( ( psz_match = WordInList( psz_intf, pp_shortcuts[i].psz_shortcut ) ) )
{
if( !psz_candidate || psz_match < psz_candidate )
{
psz_candidate = psz_match;
i_candidate = i;
}
}
}
if( i_candidate >= 0 )
return strdup( pp_shortcuts[i_candidate].psz_name );
return var_CreateGetString( p_intf, "lua-intf" );
}
static char *StripPasswords( const char *psz_config ) static char *StripPasswords( const char *psz_config )
{ {
unsigned n = 0; unsigned n = 0;
...@@ -180,37 +117,27 @@ static char *StripPasswords( const char *psz_config ) ...@@ -180,37 +117,27 @@ static char *StripPasswords( const char *psz_config )
static const luaL_Reg p_reg[] = { { NULL, NULL } }; static const luaL_Reg p_reg[] = { { NULL, NULL } };
int Open_LuaIntf( vlc_object_t *p_this ) static int Start_LuaIntf( vlc_object_t *p_this, const char *name )
{ {
intf_thread_t *p_intf = (intf_thread_t*)p_this; intf_thread_t *p_intf = (intf_thread_t*)p_this;
intf_sys_t *p_sys; intf_sys_t *p_sys;
lua_State *L; lua_State *L;
assert( name != NULL );
config_ChainParse( p_intf, "lua-", ppsz_intf_options, p_intf->p_cfg ); config_ChainParse( p_intf, "lua-", ppsz_intf_options, p_intf->p_cfg );
char *psz_name = NULL;
if( !p_intf->psz_intf || !*p_intf->psz_intf )
psz_name = strdup( "rc" );
else
psz_name = GetModuleName( p_intf );
if( !psz_name ) psz_name = strdup( "dummy" );
char *psz_config; char *psz_config;
bool b_config_set = false; bool b_config_set = false;
p_intf->p_sys = (intf_sys_t*)malloc( sizeof(intf_sys_t) ); p_intf->p_sys = (intf_sys_t*)malloc( sizeof(intf_sys_t) );
if( !p_intf->p_sys ) if( !p_intf->p_sys )
{
free( psz_name );
return VLC_ENOMEM; return VLC_ENOMEM;
}
p_sys = p_intf->p_sys; p_sys = p_intf->p_sys;
p_sys->psz_filename = vlclua_find_file( p_this, "intf", psz_name ); p_sys->psz_filename = vlclua_find_file( p_this, "intf", name );
if( !p_sys->psz_filename ) if( !p_sys->psz_filename )
{ {
msg_Err( p_intf, "Couldn't find lua interface script \"%s\".", msg_Err( p_intf, "Couldn't find lua interface script \"%s\".",
psz_name ); name );
goto error; goto error;
} }
msg_Dbg( p_intf, "Found lua interface script: %s", p_sys->psz_filename ); msg_Dbg( p_intf, "Found lua interface script: %s", p_sys->psz_filename );
...@@ -274,7 +201,7 @@ int Open_LuaIntf( vlc_object_t *p_this ) ...@@ -274,7 +201,7 @@ int Open_LuaIntf( vlc_object_t *p_this )
psz_config = var_CreateGetNonEmptyString( p_intf, "lua-config" ); psz_config = var_CreateGetNonEmptyString( p_intf, "lua-config" );
if( !psz_config ) if( !psz_config )
{ {
if( !strcmp( psz_name, "http" ) ) if( !strcmp( name, "http" ) )
{ {
char *psz_http_host = var_CreateGetNonEmptyString( p_intf, "http-host" ); char *psz_http_host = var_CreateGetNonEmptyString( p_intf, "http-host" );
char *psz_http_src = var_CreateGetNonEmptyString( p_intf, "http-src" ); char *psz_http_src = var_CreateGetNonEmptyString( p_intf, "http-src" );
...@@ -311,7 +238,7 @@ int Open_LuaIntf( vlc_object_t *p_this ) ...@@ -311,7 +238,7 @@ int Open_LuaIntf( vlc_object_t *p_this )
else else
asprintf( &psz_config, "http={no_index=%s}", b_http_index ? "true" : "false" ); asprintf( &psz_config, "http={no_index=%s}", b_http_index ? "true" : "false" );
} }
else if( !strcmp( psz_name, "telnet" ) ) else if( !strcmp( name, "telnet" ) )
{ {
char *psz_telnet_host = var_CreateGetString( p_intf, "telnet-host" ); char *psz_telnet_host = var_CreateGetString( p_intf, "telnet-host" );
if( !strcmp( psz_telnet_host, "*console" ) ) if( !strcmp( psz_telnet_host, "*console" ) )
...@@ -347,7 +274,7 @@ int Open_LuaIntf( vlc_object_t *p_this ) ...@@ -347,7 +274,7 @@ int Open_LuaIntf( vlc_object_t *p_this )
free( psz_telnet_passwd ); free( psz_telnet_passwd );
free( psz_telnet_host ); free( psz_telnet_host );
} }
else if( !strcmp( psz_name, "cli" ) ) else if( !strcmp( name, "cli" ) )
{ {
char *psz_rc_host = var_CreateGetNonEmptyString( p_intf, "rc-host" ); char *psz_rc_host = var_CreateGetNonEmptyString( p_intf, "rc-host" );
if( !psz_rc_host ) if( !psz_rc_host )
...@@ -381,7 +308,7 @@ int Open_LuaIntf( vlc_object_t *p_this ) ...@@ -381,7 +308,7 @@ int Open_LuaIntf( vlc_object_t *p_this )
lua_getglobal( L, "config" ); lua_getglobal( L, "config" );
if( lua_istable( L, -1 ) ) if( lua_istable( L, -1 ) )
{ {
if( !strcmp( psz_name, "cli" ) ) if( !strcmp( name, "cli" ) )
{ {
lua_getfield( L, -1, "rc" ); lua_getfield( L, -1, "rc" );
if( lua_istable( L, -1 ) ) if( lua_istable( L, -1 ) )
...@@ -394,7 +321,7 @@ int Open_LuaIntf( vlc_object_t *p_this ) ...@@ -394,7 +321,7 @@ int Open_LuaIntf( vlc_object_t *p_this )
else else
lua_pop( L, 1 ); lua_pop( L, 1 );
} }
lua_getfield( L, -1, psz_name ); lua_getfield( L, -1, name );
if( lua_istable( L, -1 ) ) if( lua_istable( L, -1 ) )
{ {
lua_setglobal( L, "config" ); lua_setglobal( L, "config" );
...@@ -412,7 +339,7 @@ int Open_LuaIntf( vlc_object_t *p_this ) ...@@ -412,7 +339,7 @@ int Open_LuaIntf( vlc_object_t *p_this )
} }
/* Wrapper for legacy telnet config */ /* Wrapper for legacy telnet config */
if ( !strcmp( psz_name, "telnet" ) ) if ( !strcmp( name, "telnet" ) )
{ {
/* msg_Warn( p_intf, "The `telnet' lua interface script was replaced " /* msg_Warn( p_intf, "The `telnet' lua interface script was replaced "
"by `cli', please update your configuration!" ); */ "by `cli', please update your configuration!" ); */
...@@ -422,7 +349,6 @@ int Open_LuaIntf( vlc_object_t *p_this ) ...@@ -422,7 +349,6 @@ int Open_LuaIntf( vlc_object_t *p_this )
{ {
msg_Err( p_intf, "Couldn't find lua interface script \"cli\", " msg_Err( p_intf, "Couldn't find lua interface script \"cli\", "
"needed by telnet wrapper" ); "needed by telnet wrapper" );
p_intf->psz_header = NULL;
lua_close( p_sys->L ); lua_close( p_sys->L );
goto error; goto error;
} }
...@@ -433,8 +359,8 @@ int Open_LuaIntf( vlc_object_t *p_this ) ...@@ -433,8 +359,8 @@ int Open_LuaIntf( vlc_object_t *p_this )
p_sys->L = L; p_sys->L = L;
p_intf->psz_header = psz_name; /* Cleaned up by vlc_object_release() */
/* ^^ Do I need to clean that up myself in Close_LuaIntf? */ p_intf->psz_header = strdup( name );
vlc_mutex_init( &p_sys->lock ); vlc_mutex_init( &p_sys->lock );
vlc_cond_init( &p_sys->wait ); vlc_cond_init( &p_sys->wait );
...@@ -442,6 +368,7 @@ int Open_LuaIntf( vlc_object_t *p_this ) ...@@ -442,6 +368,7 @@ int Open_LuaIntf( vlc_object_t *p_this )
if( vlc_clone( &p_sys->thread, Run, p_intf, VLC_THREAD_PRIORITY_LOW ) ) if( vlc_clone( &p_sys->thread, Run, p_intf, VLC_THREAD_PRIORITY_LOW ) )
{ {
free( p_intf->psz_header );
p_intf->psz_header = NULL; p_intf->psz_header = NULL;
vlc_cond_destroy( &p_sys->wait ); vlc_cond_destroy( &p_sys->wait );
vlc_mutex_destroy( &p_sys->lock ); vlc_mutex_destroy( &p_sys->lock );
...@@ -453,7 +380,6 @@ int Open_LuaIntf( vlc_object_t *p_this ) ...@@ -453,7 +380,6 @@ int Open_LuaIntf( vlc_object_t *p_this )
error: error:
free( p_sys->psz_filename ); free( p_sys->psz_filename );
free( p_sys ); free( p_sys );
free( psz_name );
return VLC_EGENERIC; return VLC_EGENERIC;
} }
...@@ -492,3 +418,29 @@ static void *Run( void *data ) ...@@ -492,3 +418,29 @@ static void *Run( void *data )
} }
return NULL; return NULL;
} }
int Open_LuaIntf( vlc_object_t *p_this )
{
char *name = var_InheritString( p_this, "lua-intf" );
if( unlikely(name == NULL) )
return VLC_EGENERIC;
int ret = Start_LuaIntf( p_this, name );
free( name );
return ret;
}
int Open_LuaHTTP( vlc_object_t *p_this )
{
return Start_LuaIntf( p_this, "http" );
}
int Open_LuaCLI( vlc_object_t *p_this )
{
return Start_LuaIntf( p_this, "cli" );
}
int Open_LuaTelnet( vlc_object_t *p_this )
{
return Start_LuaIntf( p_this, "telnet" );
}
...@@ -94,38 +94,57 @@ ...@@ -94,38 +94,57 @@
static int vlc_sd_probe_Open( vlc_object_t * ); static int vlc_sd_probe_Open( vlc_object_t * );
vlc_module_begin () vlc_module_begin ()
set_shortname( N_("Lua Interface Module") ) set_shortname( N_("Lua") )
set_description( N_("Interfaces implemented using lua scripts") ) set_description( N_("Lua interpreter") )
add_shortcut( "luaintf" )
add_shortcut( "luahttp" )
add_shortcut( "http" )
add_shortcut( "luatelnet" )
add_shortcut( "telnet" )
add_shortcut( "luahotkeys" )
/* add_shortcut( "hotkeys" ) */
set_capability( "interface", 0 )
set_category( CAT_INTERFACE ) set_category( CAT_INTERFACE )
set_subcategory( SUBCAT_INTERFACE_CONTROL ) set_subcategory( SUBCAT_INTERFACE_CONTROL )
add_string( "lua-intf", "dummy", add_string( "lua-intf", "dummy",
INTF_TEXT, INTF_LONGTEXT, false ) INTF_TEXT, INTF_LONGTEXT, false )
add_string( "lua-config", "", add_string( "lua-config", "",
CONFIG_TEXT, CONFIG_LONGTEXT, false ) CONFIG_TEXT, CONFIG_LONGTEXT, false )
set_capability( "interface", 0 )
set_callbacks( Open_LuaIntf, Close_LuaIntf )
add_shortcut( "luaintf" )
add_submodule ()
set_section( N_("Lua HTTP"), 0 ) set_section( N_("Lua HTTP"), 0 )
add_string ( "http-host", NULL, HOST_TEXT, HOST_LONGTEXT, true ) add_string ( "http-host", NULL, HOST_TEXT, HOST_LONGTEXT, true )
add_string ( "http-src", NULL, SRC_TEXT, SRC_LONGTEXT, true ) add_string ( "http-src", NULL, SRC_TEXT, SRC_LONGTEXT, true )
add_bool ( "http-index", false, INDEX_TEXT, INDEX_LONGTEXT, true ) add_bool ( "http-index", false, INDEX_TEXT, INDEX_LONGTEXT, true )
set_capability( "interface", 0 )
set_callbacks( Open_LuaHTTP, Close_LuaIntf )
add_shortcut( "luahttp" )
add_shortcut( "http" )
add_submodule ()
set_section( N_("Lua CLI"), 0 ) set_section( N_("Lua CLI"), 0 )
add_string( "rc-host", NULL, RCHOST_TEXT, RCHOST_LONGTEXT, true ) add_string( "rc-host", NULL, RCHOST_TEXT, RCHOST_LONGTEXT, true )
add_string( "cli-host", NULL, CLIHOST_TEXT, CLIHOST_LONGTEXT, true ) add_string( "cli-host", NULL, CLIHOST_TEXT, CLIHOST_LONGTEXT, true )
set_capability( "interface", 25 )
set_callbacks( Open_LuaCLI, Close_LuaIntf )
add_shortcut( "luacli" )
add_shortcut( "luarc" )
#ifndef WIN32
add_shortcut( "cli" )
add_shortcut( "rc" )
#endif
add_submodule ()
set_section( N_("Lua Telnet"), 0 ) set_section( N_("Lua Telnet"), 0 )
add_string( "telnet-host", "localhost", TELNETHOST_TEXT, add_string( "telnet-host", "localhost", TELNETHOST_TEXT,
TELNETHOST_LONGTEXT, true ) TELNETHOST_LONGTEXT, true )
add_integer( "telnet-port", TELNETPORT_DEFAULT, TELNETPORT_TEXT, add_integer( "telnet-port", TELNETPORT_DEFAULT, TELNETPORT_TEXT,
TELNETPORT_LONGTEXT, true ) TELNETPORT_LONGTEXT, true )
add_password( "telnet-password", TELNETPWD_DEFAULT, TELNETPWD_TEXT, add_password( "telnet-password", TELNETPWD_DEFAULT, TELNETPWD_TEXT,
TELNETPWD_LONGTEXT, true ) TELNETPWD_LONGTEXT, true )
set_capability( "interface", 0 )
set_callbacks( Open_LuaTelnet, Close_LuaIntf )
add_shortcut( "luatelnet" )
add_shortcut( "telnet" )
set_callbacks( Open_LuaIntf, Close_LuaIntf ) /* add_shortcut( "luahotkeys" ) */
/* add_shortcut( "hotkeys" ) */
add_submodule () add_submodule ()
set_shortname( N_( "Lua Meta Fetcher" ) ) set_shortname( N_( "Lua Meta Fetcher" ) )
...@@ -146,17 +165,6 @@ vlc_module_begin () ...@@ -146,17 +165,6 @@ vlc_module_begin ()
set_capability( "demux", 2 ) set_capability( "demux", 2 )
set_callbacks( Import_LuaPlaylist, Close_LuaPlaylist ) set_callbacks( Import_LuaPlaylist, Close_LuaPlaylist )
add_submodule ()
set_description( N_("Lua Interface Module (shortcuts)") )
add_shortcut( "luacli" )
add_shortcut( "luarc" )
#ifndef WIN32
add_shortcut( "cli" )
add_shortcut( "rc" )
#endif
set_capability( "interface", 25 )
set_callbacks( Open_LuaIntf, Close_LuaIntf )
add_submodule () add_submodule ()
set_shortname( N_( "Lua Art" ) ) set_shortname( N_( "Lua Art" ) )
set_description( N_("Fetch artwork using lua scripts") ) set_description( N_("Fetch artwork using lua scripts") )
......
...@@ -53,6 +53,10 @@ void Close_LuaPlaylist( vlc_object_t * ); ...@@ -53,6 +53,10 @@ void Close_LuaPlaylist( vlc_object_t * );
#define TELNETPORT_DEFAULT 4212 #define TELNETPORT_DEFAULT 4212
int Open_LuaIntf( vlc_object_t * ); int Open_LuaIntf( vlc_object_t * );
void Close_LuaIntf( vlc_object_t * ); void Close_LuaIntf( vlc_object_t * );
int Open_LuaHTTP( vlc_object_t * );
int Open_LuaCLI( vlc_object_t * );
int Open_LuaTelnet( vlc_object_t * );
int Open_Extension( vlc_object_t * ); int Open_Extension( vlc_object_t * );
void Close_Extension( vlc_object_t * ); void Close_Extension( vlc_object_t * );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment