]> git.sesse.net Git - vlc/blobdiff - src/libvlc.c
* src/libvlc.c: use UTF-8 internally on win32.
[vlc] / src / libvlc.c
index 765eafc40c2ccca528b3e7c23073fd0edfd20789..f56f840716513328ed1459c2655ebd28c17b3ada 100644 (file)
@@ -2,7 +2,7 @@
  * libvlc.c: main libvlc source
  *****************************************************************************
  * Copyright (C) 1998-2002 VideoLAN
- * $Id: libvlc.c,v 1.72 2003/03/29 12:22:15 gbazin Exp $
+ * $Id: libvlc.c,v 1.93 2003/07/19 14:22:08 gbazin Exp $
  *
  * Authors: Vincent Seguin <seguin@via.ecp.fr>
  *          Samuel Hocevar <sam@zoy.org>
 #include "vlc_cpu.h"                                        /* CPU detection */
 #include "os_specific.h"
 
-#include "error.h"
-#include "netutils.h"                                 /* network_ChannelJoin */
+#include "vlc_error.h"
 
 #include "stream_control.h"
 #include "input_ext-intf.h"
 
 #include "vlc_playlist.h"
-#include "interface.h"
+#include "vlc_interface.h"
 
 #include "audio_output.h"
 
-#include "video.h"
+#include "vlc_video.h"
 #include "video_output.h"
 
 #include "libvlc.h"
@@ -82,8 +81,9 @@
 /*****************************************************************************
  * The evil global variable. We handle it with care, don't worry.
  *****************************************************************************/
-static libvlc_t libvlc;
-static vlc_t *  p_static_vlc;
+static libvlc_t   libvlc;
+static libvlc_t * p_libvlc;
+static vlc_t *    p_static_vlc;
 
 /*****************************************************************************
  * Local prototypes
@@ -131,9 +131,12 @@ int VLC_Create( void )
     vlc_t * p_vlc = NULL;
     vlc_value_t lockval;
 
+    /* &libvlc never changes, so we can safely call this multiple times. */
+    p_libvlc = &libvlc;
+
     /* vlc_threads_init *must* be the first internal call! No other call is
      * allowed before the thread system has been initialized. */
-    i_ret = vlc_threads_init( &libvlc );
+    i_ret = vlc_threads_init( p_libvlc );
     if( i_ret < 0 )
     {
         return i_ret;
@@ -141,8 +144,8 @@ int VLC_Create( void )
 
     /* Now that the thread system is initialized, we don't have much, but
      * at least we have var_Create */
-    var_Create( &libvlc, "libvlc", VLC_VAR_MUTEX );
-    var_Get( &libvlc, "libvlc", &lockval );
+    var_Create( p_libvlc, "libvlc", VLC_VAR_MUTEX );
+    var_Get( p_libvlc, "libvlc", &lockval );
     vlc_mutex_lock( lockval.p_address );
     if( !libvlc.b_ready )
     {
@@ -155,18 +158,18 @@ int VLC_Create( void )
         psz_env = getenv( "VLC_VERBOSE" );
         libvlc.i_verbose = psz_env ? atoi( psz_env ) : -1;
 
-#ifdef HAVE_ISATTY
+#if defined( HAVE_ISATTY ) && !defined( WIN32 )
         libvlc.b_color = isatty( 2 ); /* 2 is for stderr */
 #else
         libvlc.b_color = VLC_FALSE;
 #endif
 
         /* Initialize message queue */
-        msg_Create( &libvlc );
+        msg_Create( p_libvlc );
 
         /* Announce who we are */
-        msg_Dbg( &libvlc, COPYRIGHT_MESSAGE );
-        msg_Dbg( &libvlc, "libvlc was configured with %s", CONFIGURE_LINE );
+        msg_Dbg( p_libvlc, COPYRIGHT_MESSAGE );
+        msg_Dbg( p_libvlc, "libvlc was configured with %s", CONFIGURE_LINE );
 
         /* The module bank will be initialized later */
         libvlc.p_module_bank = NULL;
@@ -174,10 +177,10 @@ int VLC_Create( void )
         libvlc.b_ready = VLC_TRUE;
     }
     vlc_mutex_unlock( lockval.p_address );
-    var_Destroy( &libvlc, "libvlc" );
+    var_Destroy( p_libvlc, "libvlc" );
 
     /* Allocate a vlc object */
-    p_vlc = vlc_object_create( &libvlc, VLC_OBJECT_VLC );
+    p_vlc = vlc_object_create( p_libvlc, VLC_OBJECT_VLC );
     if( p_vlc == NULL )
     {
         return VLC_EGENERIC;
@@ -188,9 +191,12 @@ int VLC_Create( void )
 
     /* Initialize mutexes */
     vlc_mutex_init( p_vlc, &p_vlc->config_lock );
+#ifdef SYS_DARWIN
+    vlc_mutex_init( p_vlc, &p_vlc->quicktime_lock );
+#endif
 
     /* Store our newly allocated structure in the global list */
-    vlc_object_attach( p_vlc, &libvlc );
+    vlc_object_attach( p_vlc, p_libvlc );
 
     /* Store data for the non-reentrant API */
     p_static_vlc = p_vlc;
@@ -213,13 +219,14 @@ int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] )
     char *       p_tmp;
     char *       psz_modules;
     char *       psz_parser;
+    char *       psz_language;
     vlc_bool_t   b_exit = VLC_FALSE;
     vlc_t *      p_vlc;
     module_t    *p_help_module;
     playlist_t  *p_playlist;
     vlc_value_t  lockval;
 
-    p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
+    p_vlc = i_object ? vlc_object_get( p_libvlc, i_object ) : p_static_vlc;
 
     if( !p_vlc )
     {
@@ -258,22 +265,22 @@ int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] )
      * main module. We need to do this at this stage to be able to display
      * a short help if required by the user. (short help == main module
      * options) */
-    var_Create( &libvlc, "libvlc", VLC_VAR_MUTEX );
-    var_Get( &libvlc, "libvlc", &lockval );
+    var_Create( p_libvlc, "libvlc", VLC_VAR_MUTEX );
+    var_Get( p_libvlc, "libvlc", &lockval );
     vlc_mutex_lock( lockval.p_address );
     if( libvlc.p_module_bank == NULL )
     {
-        module_InitBank( &libvlc );
-        module_LoadMain( &libvlc );
+        module_InitBank( p_libvlc );
+        module_LoadMain( p_libvlc );
     }
     vlc_mutex_unlock( lockval.p_address );
-    var_Destroy( &libvlc, "libvlc" );
+    var_Destroy( p_libvlc, "libvlc" );
 
     /* Hack: insert the help module here */
     p_help_module = vlc_object_create( p_vlc, VLC_OBJECT_MODULE );
     if( p_help_module == NULL )
     {
-        //module_EndBank( p_vlc );
+        /*module_EndBank( p_vlc );*/
         if( i_object ) vlc_object_release( p_vlc );
         return VLC_EGENERIC;
     }
@@ -287,7 +294,7 @@ int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] )
         vlc_object_detach( p_help_module );
         config_Free( p_help_module );
         vlc_object_destroy( p_help_module );
-        //module_EndBank( p_vlc );
+        /*module_EndBank( p_vlc );*/
         if( i_object ) vlc_object_release( p_vlc );
         return VLC_EGENERIC;
     }
@@ -316,22 +323,47 @@ int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] )
     {
         config_Free( p_help_module );
         vlc_object_destroy( p_help_module );
-        //module_EndBank( p_vlc );
+        /*module_EndBank( p_vlc );*/
         if( i_object ) vlc_object_release( p_vlc );
         return VLC_EEXIT;
     }
 
     /* Check for translation config option */
-    if( !config_GetInt( p_vlc, "translation" ) )
+#if defined( ENABLE_NLS ) \
+     && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
+
+    /* This ain't really nice to have to reload the config here but it seems
+     * the only way to do it. */
+    p_vlc->psz_homedir = config_GetHomeDir();
+    config_LoadConfigFile( p_vlc, "main" );
+    config_LoadCmdLine( p_vlc, &i_argc, ppsz_argv, VLC_TRUE );
+
+    /* Check if the user specified a custom language */
+    psz_language = config_GetPsz( p_vlc, "language" );
+    if( psz_language && *psz_language && strcmp( psz_language, "auto" ) )
     {
         /* Reset the default domain */
-        SetLanguage( "C" );
+        SetLanguage( psz_language );
 
-#if defined( ENABLE_NLS ) \
-     && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
-        textdomain( "dummy" );
+        /* Translate "C" to the language code: "fr", "en_GB", "nl", "ru"... */
+        msg_Dbg( p_vlc, "translation test: code is \"%s\"", _("C") );
+
+        textdomain( PACKAGE );
+
+#if defined( SYS_BEOS ) || defined ( SYS_DARWIN ) || \
+    ( defined( WIN32 ) && !defined( HAVE_INCLUDED_GETTEXT ) )
+        /* BeOS only support UTF8 strings */
+        /* Mac OS X prefers UTF8 */
+        bind_textdomain_codeset( PACKAGE, "UTF-8" );
 #endif
+
+        module_EndBank( p_vlc );
+        module_InitBank( p_libvlc );
+        module_LoadMain( p_libvlc );
+        config_LoadCmdLine( p_vlc, &i_argc, ppsz_argv, VLC_TRUE );
     }
+    if( psz_language ) free( psz_language );
+#endif
 
     /*
      * Load the builtins and plugins into the module_bank.
@@ -339,8 +371,8 @@ int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] )
      * list of configuration options exported by each module and loads their
      * default values.
      */
-    module_LoadBuiltins( &libvlc );
-    module_LoadPlugins( &libvlc );
+    module_LoadBuiltins( p_libvlc );
+    module_LoadPlugins( p_libvlc );
     msg_Dbg( p_vlc, "module bank initialized, found %i modules",
                     libvlc.p_module_bank->i_children );
 
@@ -376,7 +408,7 @@ int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] )
 
     if( b_exit )
     {
-        //module_EndBank( p_vlc );
+        /*module_EndBank( p_vlc );*/
         if( i_object ) vlc_object_release( p_vlc );
         return VLC_EEXIT;
     }
@@ -399,7 +431,7 @@ int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] )
                  "that they are valid.\nPress the RETURN key to continue..." );
         getchar();
 #endif
-        //module_EndBank( p_vlc );
+        /*module_EndBank( p_vlc );*/
         if( i_object ) vlc_object_release( p_vlc );
         return VLC_EGENERIC;
     }
@@ -424,7 +456,7 @@ int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] )
             libvlc.i_verbose = __MIN( i_tmp, 2 );
         }
     }
-    libvlc.b_color = libvlc.b_color || config_GetInt( p_vlc, "color" );
+    libvlc.b_color = libvlc.b_color && config_GetInt( p_vlc, "color" );
 
     /*
      * Output messages that may still be in the queue
@@ -484,18 +516,6 @@ int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] )
         p_vlc->pf_memset = memset;
     }
 
-    /*
-     * Initialize shared resources and libraries
-     */
-    if( config_GetInt( p_vlc, "network-channel" )
-         && network_ChannelCreate( p_vlc ) )
-    {
-        /* On error during Channels initialization, switch off channels */
-        msg_Warn( p_vlc,
-                  "channels initialization failed, deactivating channels" );
-        config_PutInt( p_vlc, "network-channel", VLC_FALSE );
-    }
-
     /*
      * Initialize playlist and get commandline files
      */
@@ -507,7 +527,7 @@ int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] )
         {
             module_Unneed( p_vlc, p_vlc->p_memcpy_module );
         }
-        //module_EndBank( p_vlc );
+        /*module_EndBank( p_vlc );*/
         if( i_object ) vlc_object_release( p_vlc );
         return VLC_EGENERIC;
     }
@@ -568,7 +588,7 @@ int VLC_AddIntf( int i_object, char const *psz_module, vlc_bool_t b_block )
     intf_thread_t *p_intf;
     vlc_t *p_vlc;
 
-    p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
+    p_vlc = i_object ? vlc_object_get( p_libvlc, i_object ) : p_static_vlc;
 
     if( !p_vlc )
     {
@@ -610,21 +630,13 @@ int VLC_Destroy( int i_object )
 {
     vlc_t *p_vlc;
 
-    p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
+    p_vlc = i_object ? vlc_object_get( p_libvlc, i_object ) : p_static_vlc;
 
     if( !p_vlc )
     {
         return VLC_ENOOBJ;
     }
 
-    /*
-     * Go back into channel 0 which is the network
-     */
-    if( config_GetInt( p_vlc, "network-channel" ) && p_vlc->p_channel )
-    {
-        network_ChannelJoin( p_vlc, COMMON_CHANNEL );
-    }
-
     /*
      * Free allocated memory
      */
@@ -643,7 +655,7 @@ int VLC_Destroy( int i_object )
     /*
      * XXX: Free module bank !
      */
-    //module_EndBank( p_vlc );
+    /*module_EndBank( p_vlc );*/
 
     /*
      * System specific cleaning code
@@ -652,6 +664,9 @@ int VLC_Destroy( int i_object )
 
     /* Destroy mutexes */
     vlc_mutex_destroy( &p_vlc->config_lock );
+#ifdef SYS_DARWIN
+    vlc_mutex_destroy( &p_vlc->quicktime_lock );
+#endif
 
     vlc_object_detach( p_vlc );
 
@@ -661,7 +676,7 @@ int VLC_Destroy( int i_object )
     vlc_object_destroy( p_vlc );
 
     /* Stop thread system: last one out please shut the door! */
-    vlc_threads_end( &libvlc );
+    vlc_threads_end( p_libvlc );
 
     return VLC_SUCCESS;
 }
@@ -676,7 +691,7 @@ int VLC_Die( int i_object )
 {
     vlc_t *p_vlc;
 
-    p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
+    p_vlc = i_object ? vlc_object_get( p_libvlc, i_object ) : p_static_vlc;
 
     if( !p_vlc )
     {
@@ -701,7 +716,7 @@ int VLC_AddTarget( int i_object, char const *psz_target, int i_mode, int i_pos )
     playlist_t *p_playlist;
     vlc_t *p_vlc;
 
-    p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
+    p_vlc = i_object ? vlc_object_get( p_libvlc, i_object ) : p_static_vlc;
 
     if( !p_vlc )
     {
@@ -742,7 +757,7 @@ int VLC_Set( int i_object, char const *psz_var, vlc_value_t value )
     vlc_t *p_vlc;
     int i_ret;
 
-    p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
+    p_vlc = i_object ? vlc_object_get( p_libvlc, i_object ) : p_static_vlc;
 
     if( !p_vlc )
     {
@@ -796,7 +811,7 @@ int VLC_Get( int i_object, char const *psz_var, vlc_value_t *p_value )
     vlc_t *p_vlc;
     int i_ret;
 
-    p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
+    p_vlc = i_object ? vlc_object_get( p_libvlc, i_object ) : p_static_vlc;
 
     if( !p_vlc )
     {
@@ -819,7 +834,7 @@ int VLC_Play( int i_object )
     playlist_t * p_playlist;
     vlc_t *p_vlc;
 
-    p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
+    p_vlc = i_object ? vlc_object_get( p_libvlc, i_object ) : p_static_vlc;
 
     /* Check that the handle is valid */
     if( !p_vlc )
@@ -863,7 +878,7 @@ int VLC_Stop( int i_object )
     aout_instance_t * p_aout;
     vlc_t *p_vlc;
 
-    p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
+    p_vlc = i_object ? vlc_object_get( p_libvlc, i_object ) : p_static_vlc;
 
     /* Check that the handle is valid */
     if( !p_vlc )
@@ -929,7 +944,7 @@ int VLC_Pause( int i_object )
     input_thread_t *p_input;
     vlc_t *p_vlc;
 
-    p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
+    p_vlc = i_object ? vlc_object_get( p_libvlc, i_object ) : p_static_vlc;
 
     if( !p_vlc )
     {
@@ -959,7 +974,7 @@ int VLC_FullScreen( int i_object )
     vout_thread_t *p_vout;
     vlc_t *p_vlc;
 
-    p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
+    p_vlc = i_object ? vlc_object_get( p_libvlc, i_object ) : p_static_vlc;
 
     if( !p_vlc )
     {
@@ -996,13 +1011,25 @@ static void SetLanguage ( char const *psz_lang )
      && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
 
     char *          psz_path;
-#if defined( SYS_DARWIN ) || defined ( WIN32 )
+#if defined( SYS_DARWIN ) || defined ( WIN32 ) || defined( SYS_BEOS )
     char            psz_tmp[1024];
 #endif
 
-#   if defined( HAVE_INCLUDED_GETTEXT ) && !defined( HAVE_LC_MESSAGES )
-    if( *psz_lang )
+    if( psz_lang && !*psz_lang )
+    {
+#   if defined( HAVE_LC_MESSAGES )
+        setlocale( LC_MESSAGES, psz_lang );
+#   endif
+        setlocale( LC_CTYPE, psz_lang );
+    }
+    else if( psz_lang )
     {
+#ifdef SYS_DARWIN
+        /* I need that under Darwin, please check it doesn't disturb
+         * other platforms. --Meuuh */
+        setenv( "LANG", psz_lang, 1 );
+
+#elif defined( SYS_BEOS ) || defined( WIN32 )
         /* We set LC_ALL manually because it is the only way to set
          * the language at runtime under eg. Windows. Beware that this
          * makes the environment unconsistent when libvlc is unloaded and
@@ -1011,23 +1038,13 @@ static void SetLanguage ( char const *psz_lang )
         snprintf( psz_lcall, 19, "LC_ALL=%s", psz_lang );
         psz_lcall[19] = '\0';
         putenv( psz_lcall );
-    }
-#   endif
+#endif
 
-    if( psz_lang && !*psz_lang )
-    {
-#   if defined( HAVE_LC_MESSAGES )
-        setlocale( LC_MESSAGES, psz_lang );
-#   endif
-        setlocale( LC_CTYPE, psz_lang );
-    }
-    else
-    {
         setlocale( LC_ALL, psz_lang );
     }
 
     /* Specify where to find the locales for current domain */
-#if !defined( SYS_DARWIN ) && !defined( WIN32 )
+#if !defined( SYS_DARWIN ) && !defined( WIN32 ) && !defined( SYS_BEOS )
     psz_path = LOCALEDIR;
 #else
     snprintf( psz_tmp, sizeof(psz_tmp), "%s/%s", libvlc.psz_vlcpath,
@@ -1042,6 +1059,14 @@ static void SetLanguage ( char const *psz_lang )
 
     /* Set the default domain */
     textdomain( PACKAGE );
+
+#if defined( SYS_BEOS ) || defined ( SYS_DARWIN ) || \
+    ( defined( WIN32 ) && !defined( HAVE_INCLUDED_GETTEXT ) )
+    /* BeOS only support UTF8 strings */
+    /* Mac OS X prefers UTF8 */
+    bind_textdomain_codeset( PACKAGE, "UTF-8" );
+#endif
+
 #endif
 }