]> git.sesse.net Git - vlc/blobdiff - modules/lua/intf.c
Android: always return an empty proxy
[vlc] / modules / lua / intf.c
index 3b017274bd1c82af5318ec02d775ca2f1b66ce2d..e382647dcdf400f04912fbbdd6028852a236b920 100644 (file)
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
-#ifndef  _GNU_SOURCE
-#   define  _GNU_SOURCE
-#endif
-
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
 
-#include <vlc_common.h>
-#include <vlc_interface.h>
 #include <sys/types.h>
 #include <sys/stat.h>
 
-#include <lua.h>        /* Low level lua C API */
-#include <lauxlib.h>    /* Higher level C API */
-#include <lualib.h>     /* Lua libs */
+#include <vlc_common.h>
+#include <vlc_interface.h>
 
 #include "vlc.h"
 #include "libs.h"
@@ -68,64 +61,77 @@ static char *MakeConfig( intf_thread_t *p_intf, const char *name )
 
     if( !strcmp( name, "http" ) )
     {
-        char *psz_http_src = var_CreateGetNonEmptyString( p_intf, "http-src" );
-        bool b_http_index = var_CreateGetBool( p_intf, "http-index" );
+        char *psz_http_src = var_InheritString( p_intf, "http-src" );
+        bool b_http_index = var_InheritBool( p_intf, "http-index" );
         if( psz_http_src )
         {
             char *psz_esc = config_StringEscape( psz_http_src );
-            asprintf( &psz_config, "http={dir='%s',no_index=%s}", psz_esc, b_http_index ? "true" : "false" );
+
+            if( asprintf( &psz_config, "http={dir='%s',no_index=%s}", psz_esc,
+                          b_http_index ? "true" : "false" ) == -1 )
+                psz_config = NULL;
             free( psz_esc );
             free( psz_http_src );
         }
         else
-            asprintf( &psz_config, "http={no_index=%s}", b_http_index ? "true" : "false" );
+        {
+            if( asprintf( &psz_config, "http={no_index=%s}",
+                          b_http_index ? "true" : "false" ) == -1 )
+                psz_config = NULL;
+        }
     }
     else if( !strcmp( name, "telnet" ) )
     {
-        char *psz_telnet_host = var_CreateGetString( p_intf, "telnet-host" );
-        if( !strcmp( psz_telnet_host, "*console" ) )
+        char *psz_host = var_InheritString( p_intf, "telnet-host" );
+        if( !strcmp( psz_host, "*console" ) )
             ;
         else
         {
             vlc_url_t url;
-            vlc_UrlParse( &url, psz_telnet_host, 0 );
-            int i_telnet_port = var_CreateGetInteger( p_intf, "telnet-port" );
+            vlc_UrlParse( &url, psz_host, 0 );
+            unsigned i_port = var_InheritInteger( p_intf, "telnet-port" );
             if ( url.i_port != 0 )
             {
-                if ( i_telnet_port == TELNETPORT_DEFAULT )
-                    i_telnet_port = url.i_port;
-                else if ( url.i_port != i_telnet_port )
-                    msg_Warn( p_intf, "ignoring port %d (using %d)", url.i_port, i_telnet_port );
+                if ( i_port == TELNETPORT_DEFAULT )
+                    i_port = url.i_port;
+                else if ( url.i_port != i_port )
+                    msg_Warn( p_intf, "ignoring port %d (using %d)",
+                              url.i_port, i_port );
             }
 
             char *psz_esc_host = config_StringEscape( url.psz_host );
-            free( psz_telnet_host );
+            free( psz_host );
             vlc_UrlClean( &url );
 
-            asprintf( &psz_telnet_host, "telnet://%s:%d", psz_esc_host ? psz_esc_host : "", i_telnet_port );
+            if( asprintf( &psz_host, "telnet://%s:%d",
+                          psz_esc_host ? psz_esc_host : "", i_port ) == -1 )
+                psz_host = NULL;
             free( psz_esc_host );
         }
 
-        char *psz_telnet_passwd = var_CreateGetString( p_intf, "telnet-password" );
+        char *psz_passwd = var_InheritString( p_intf, "telnet-password" );
 
-        char *psz_esc_passwd = config_StringEscape( psz_telnet_passwd );
+        char *psz_esc_passwd = config_StringEscape( psz_passwd );
 
-        asprintf( &psz_config, "telnet={host='%s',password='%s'}", psz_telnet_host, psz_esc_passwd );
+        if( asprintf( &psz_config, "telnet={host='%s',password='%s'}",
+                      psz_host, psz_esc_passwd ) == -1 )
+            psz_config = NULL;
 
         free( psz_esc_passwd );
-        free( psz_telnet_passwd );
-        free( psz_telnet_host );
+        free( psz_passwd );
+        free( psz_host );
     }
     else if( !strcmp( name, "cli" ) )
     {
-        char *psz_rc_host = var_CreateGetNonEmptyString( p_intf, "rc-host" );
+        char *psz_rc_host = var_InheritString( p_intf, "rc-host" );
         if( !psz_rc_host )
-            psz_rc_host = var_CreateGetNonEmptyString( p_intf, "cli-host" );
+            psz_rc_host = var_InheritString( p_intf, "cli-host" );
         if( psz_rc_host )
         {
             char *psz_esc_host = config_StringEscape( psz_rc_host );
-            asprintf( &psz_config, "cli={host='%s'}", psz_esc_host );
 
+            if( asprintf( &psz_config, "cli={host='%s'}", psz_esc_host ) == -1 )
+                psz_config = NULL;
             free( psz_esc_host );
             free( psz_rc_host );
         }
@@ -215,7 +221,7 @@ static int Start_LuaIntf( vlc_object_t *p_this, const char *name )
         return VLC_ENOMEM;
     }
     p_sys = p_intf->p_sys;
-    p_sys->psz_filename = vlclua_find_file( p_this, "intf", name );
+    p_sys->psz_filename = vlclua_find_file( "intf", name );
     if( !p_sys->psz_filename )
     {
         msg_Err( p_intf, "Couldn't find lua interface script \"%s\".",
@@ -240,7 +246,6 @@ static int Start_LuaIntf( vlc_object_t *p_this, const char *name )
     luaL_register( L, "vlc", p_reg );
 
     /* register submodules */
-    luaopen_acl( L );
     luaopen_config( L );
     luaopen_volume( L );
     luaopen_httpd( L );
@@ -261,12 +266,15 @@ static int Start_LuaIntf( vlc_object_t *p_this, const char *name )
     luaopen_gettext( L );
     luaopen_xml( L );
     luaopen_equalizer( L );
+#if defined(WIN32) && !defined(WINAPI_FAMILY_APP)
+    luaopen_win( L );
+#endif
 
     /* clean up */
     lua_pop( L, 1 );
 
     /* Setup the module search path */
-    if( vlclua_add_modules_path( p_intf, L, p_sys->psz_filename ) )
+    if( vlclua_add_modules_path( L, p_sys->psz_filename ) )
     {
         msg_Warn( p_intf, "Error while setting the module search path for %s",
                   p_sys->psz_filename );
@@ -338,7 +346,7 @@ static int Start_LuaIntf( vlc_object_t *p_this, const char *name )
         /* msg_Warn( p_intf, "The `telnet' lua interface script was replaced "
                           "by `cli', please update your configuration!" ); */
 
-        char *wrapped_file = vlclua_find_file( p_this, "intf", "cli" );
+        char *wrapped_file = vlclua_find_file( "intf", "cli" );
         if( !wrapped_file )
         {
             msg_Err( p_intf, "Couldn't find lua interface script \"cli\", "
@@ -353,14 +361,8 @@ static int Start_LuaIntf( vlc_object_t *p_this, const char *name )
 
     p_sys->L = L;
 
-    vlc_mutex_init( &p_sys->lock );
-    vlc_cond_init( &p_sys->wait );
-    p_sys->exiting = false;
-
     if( vlc_clone( &p_sys->thread, Run, p_intf, VLC_THREAD_PRIORITY_LOW ) )
     {
-        vlc_cond_destroy( &p_sys->wait );
-        vlc_mutex_destroy( &p_sys->lock );
         lua_close( p_sys->L );
         goto error;
     }
@@ -380,15 +382,7 @@ void Close_LuaIntf( vlc_object_t *p_this )
     intf_sys_t *p_sys = p_intf->p_sys;
 
     vlc_cancel( p_sys->thread );
-
-    vlc_mutex_lock( &p_sys->lock );
-    p_sys->exiting = true;
-    vlc_cond_signal( &p_sys->wait );
-    vlc_mutex_unlock( &p_sys->lock );
     vlc_join( p_sys->thread, NULL );
-    vlc_cond_destroy( &p_sys->wait );
-    vlc_mutex_destroy( &p_sys->lock );
-
     lua_close( p_sys->L );
 
     free( p_sys->psz_filename );
@@ -427,5 +421,13 @@ int Open_LuaCLI( vlc_object_t *p_this )
 
 int Open_LuaTelnet( vlc_object_t *p_this )
 {
+    char *pw = var_CreateGetNonEmptyString( p_this, "telnet-password" );
+    if( pw == NULL )
+    {
+        msg_Err( p_this, "password not configured" );
+        msg_Info( p_this, "Please specify the password in the preferences." );
+        return VLC_EGENERIC;
+    }
+    free( pw );
     return Start_LuaIntf( p_this, "telnet" );
 }