]> git.sesse.net Git - vlc/blob - src/libvlc-common.c
config_GetConfigDir -> config_GetUserConfDir
[vlc] / src / libvlc-common.c
1 /*****************************************************************************
2  * libvlc-common.c: libvlc instances creation and deletion, interfaces handling
3  *****************************************************************************
4  * Copyright (C) 1998-2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Vincent Seguin <seguin@via.ecp.fr>
8  *          Samuel Hocevar <sam@zoy.org>
9  *          Gildas Bazin <gbazin@videolan.org>
10  *          Derk-Jan Hartman <hartman at videolan dot org>
11  *          RĂ©mi Denis-Courmont <rem # videolan : org>
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
26  *****************************************************************************/
27
28 /** \file
29  * This file contains functions to create and destroy libvlc instances
30  */
31
32 /*****************************************************************************
33  * Preamble
34  *****************************************************************************/
35 #ifdef HAVE_CONFIG_H
36 # include "config.h"
37 #endif
38
39 #include <vlc/vlc.h>
40 #include "control/libvlc_internal.h"
41 #include <vlc_input.h>
42
43 #include "modules/modules.h"
44 #include "config/configuration.h"
45 #include "interface/interface.h"
46
47 #include <errno.h>                                                 /* ENOMEM */
48 #include <stdio.h>                                              /* sprintf() */
49 #include <string.h>
50 #include <stdlib.h>                                                /* free() */
51
52 #ifndef WIN32
53 #   include <netinet/in.h>                            /* BSD: struct in_addr */
54 #endif
55
56 #ifdef HAVE_UNISTD_H
57 #   include <unistd.h>
58 #elif defined( WIN32 ) && !defined( UNDER_CE )
59 #   include <io.h>
60 #endif
61
62 #ifdef WIN32                       /* optind, getopt(), included in unistd.h */
63 #   include "extras/getopt.h"
64 #endif
65
66 #ifdef HAVE_LOCALE_H
67 #   include <locale.h>
68 #endif
69
70 #ifdef HAVE_DBUS_3
71 /* used for one-instance mode */
72 #   include <dbus/dbus.h>
73 #endif
74
75 #ifdef HAVE_HAL
76 #   include <hal/libhal.h>
77 #endif
78
79 #include <vlc_playlist.h>
80 #include <vlc_interface.h>
81
82 #include <vlc_aout.h>
83 #include "audio_output/aout_internal.h"
84
85 #include <vlc_vout.h>
86
87 #include <vlc_sout.h>
88 #include "stream_output/stream_output.h"
89
90 #include <vlc_charset.h>
91
92 #include "libvlc.h"
93
94 #include "playlist/playlist_internal.h"
95
96 #include <vlc_vlm.h>
97
98 /*****************************************************************************
99  * The evil global variables. We handle them with care, don't worry.
100  *****************************************************************************/
101 static libvlc_int_t *    p_static_vlc = NULL;
102 static volatile unsigned int i_instances = 0;
103
104 static bool b_daemon = false;
105
106 /*****************************************************************************
107  * Local prototypes
108  *****************************************************************************/
109 #if defined( ENABLE_NLS ) && (defined (__APPLE__) || defined (WIN32)) && \
110     ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
111 static void SetLanguage   ( char const * );
112 #endif
113 static inline int LoadMessages (void);
114 static int  GetFilenames  ( libvlc_int_t *, int, const char *[] );
115 static void Help          ( libvlc_int_t *, char const *psz_help_name );
116 static void Usage         ( libvlc_int_t *, char const *psz_module_name );
117 static void ListModules   ( libvlc_int_t *, bool );
118 static void Version       ( void );
119
120 #ifdef WIN32
121 static void ShowConsole   ( bool );
122 static void PauseConsole  ( void );
123 #endif
124 static int  ConsoleWidth  ( void );
125
126 static int  VerboseCallback( vlc_object_t *, char const *,
127                              vlc_value_t, vlc_value_t, void * );
128
129 static void InitDeviceValues( libvlc_int_t * );
130
131 /*****************************************************************************
132  * vlc_current_object: return the current object.
133  *****************************************************************************
134  * If i_object is non-zero, return the corresponding object. Otherwise,
135  * return the statically allocated p_vlc object.
136  *****************************************************************************/
137 libvlc_int_t * vlc_current_object( int i_object )
138 {
139     return i_object ? vlc_object_get( i_object ) : p_static_vlc;
140 }
141
142
143 /**
144  * Allocate a libvlc instance, initialize global data if needed
145  * It also initializes the threading system
146  */
147 libvlc_int_t * libvlc_InternalCreate( void )
148 {
149     libvlc_int_t *p_libvlc;
150     libvlc_priv_t *priv;
151     char *psz_env = NULL;
152
153     /* vlc_threads_init *must* be the first internal call! No other call is
154      * allowed before the thread system has been initialized. */
155     if (vlc_threads_init ())
156         return NULL;
157
158     libvlc_global_data_t *p_libvlc_global = vlc_global();
159     /* Now that the thread system is initialized, we don't have much, but
160      * at least we have variables */
161     vlc_mutex_t *lock = var_AcquireMutex( "libvlc" );
162     if( i_instances == 0 )
163     {
164         /* Guess what CPU we have */
165         cpu_flags = CPUCapabilities();
166        /* The module bank will be initialized later */
167         p_libvlc_global->p_module_bank = NULL;
168     }
169
170     /* Allocate a libvlc instance object */
171     p_libvlc = vlc_custom_create( VLC_OBJECT(p_libvlc_global),
172                                   sizeof (*p_libvlc) + sizeof (libvlc_priv_t),
173                                   VLC_OBJECT_LIBVLC, "libvlc" );
174     if( p_libvlc != NULL )
175         i_instances++;
176     vlc_mutex_unlock( lock );
177
178     if( p_libvlc == NULL )
179         return NULL;
180
181     priv = libvlc_priv (p_libvlc);
182     p_libvlc->p_playlist = NULL;
183     priv->p_interaction = NULL;
184     priv->p_vlm = NULL;
185     p_libvlc->psz_object_name = strdup( "libvlc" );
186
187     /* Initialize message queue */
188     msg_Create( p_libvlc );
189
190     /* Find verbosity from VLC_VERBOSE environment variable */
191     psz_env = getenv( "VLC_VERBOSE" );
192     if( psz_env != NULL )
193         priv->i_verbose = atoi( psz_env );
194     else
195         priv->i_verbose = 3;
196 #if defined( HAVE_ISATTY ) && !defined( WIN32 )
197     priv->b_color = isatty( 2 ); /* 2 is for stderr */
198 #else
199     priv->b_color = false;
200 #endif
201
202     /* Announce who we are - Do it only for first instance ? */
203     msg_Dbg( p_libvlc, COPYRIGHT_MESSAGE );
204     msg_Dbg( p_libvlc, "libvlc was configured with %s", CONFIGURE_LINE );
205
206     /* Initialize mutexes */
207     vlc_mutex_init( &priv->timer_lock );
208     vlc_mutex_init( &priv->config_lock );
209 #ifdef __APPLE__
210     vlc_thread_set_priority( p_libvlc, VLC_THREAD_PRIORITY_LOW );
211 #endif
212     /* Store data for the non-reentrant API */
213     p_static_vlc = p_libvlc;
214
215     return p_libvlc;
216 }
217
218 /**
219  * Initialize a libvlc instance
220  * This function initializes a previously allocated libvlc instance:
221  *  - CPU detection
222  *  - gettext initialization
223  *  - message queue, module bank and playlist initialization
224  *  - configuration and commandline parsing
225  */
226 int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
227                          const char *ppsz_argv[] )
228 {
229     libvlc_global_data_t *p_libvlc_global = vlc_global();
230     libvlc_priv_t *priv = libvlc_priv (p_libvlc);
231     char         p_capabilities[200];
232     char *       p_tmp = NULL;
233     char *       psz_modules = NULL;
234     char *       psz_parser = NULL;
235     char *       psz_control = NULL;
236     bool   b_exit = false;
237     int          i_ret = VLC_EEXIT;
238     playlist_t  *p_playlist = NULL;
239     vlc_value_t  val;
240 #if defined( ENABLE_NLS ) \
241      && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
242 # if defined (WIN32) || defined (__APPLE__)
243     char *       psz_language;
244 #endif
245 #endif
246
247     /* System specific initialization code */
248     system_Init( p_libvlc, &i_argc, ppsz_argv );
249
250     /* Get the executable name (similar to the basename command) */
251     if( i_argc > 0 && ppsz_argv[0][0] )
252     {
253         free( p_libvlc->psz_object_name );
254
255         const char *psz_exe = strrchr( ppsz_argv[0], '/' );
256         if( psz_exe && *(psz_exe + 1) )
257             p_libvlc->psz_object_name = strdup( psz_exe + 1 );
258         else
259             p_libvlc->psz_object_name = strdup( ppsz_argv[0] );
260     }
261
262     /*
263      * Support for gettext
264      */
265     LoadMessages ();
266
267     /* Translate "C" to the language code: "fr", "en_GB", "nl", "ru"... */
268     msg_Dbg( p_libvlc, "translation test: code is \"%s\"", _("C") );
269
270     /* Initialize the module bank and load the configuration of the
271      * main module. We need to do this at this stage to be able to display
272      * a short help if required by the user. (short help == main module
273      * options) */
274     module_InitBank( p_libvlc );
275
276     if( config_LoadCmdLine( p_libvlc, &i_argc, ppsz_argv, true ) )
277     {
278         module_EndBank( p_libvlc );
279         return VLC_EGENERIC;
280     }
281
282     /* Check for short help option */
283     if( config_GetInt( p_libvlc, "help" ) > 0 )
284     {
285         Help( p_libvlc, "help" );
286         b_exit = true;
287         i_ret = VLC_EEXITSUCCESS;
288     }
289     /* Check for version option */
290     else if( config_GetInt( p_libvlc, "version" ) > 0 )
291     {
292         Version();
293         b_exit = true;
294         i_ret = VLC_EEXITSUCCESS;
295     }
296
297     /* Set the config file stuff */
298     p_libvlc->psz_homedir    = config_GetHomeDir();
299     priv->psz_configdir  = config_GetUserConfDir();
300     priv->psz_datadir    = config_GetUserDataDir();
301     priv->psz_cachedir   = config_GetCacheDir();
302     priv->psz_configfile = config_GetCustomConfigFile( p_libvlc );
303
304     /* Check for plugins cache options */
305     if( config_GetInt( p_libvlc, "reset-plugins-cache" ) > 0 )
306     {
307         p_libvlc_global->p_module_bank->b_cache_delete = true;
308     }
309
310     /* Will be re-done properly later on */
311     priv->i_verbose = config_GetInt( p_libvlc, "verbose" );
312
313     /* Check for daemon mode */
314 #ifndef WIN32
315     if( config_GetInt( p_libvlc, "daemon" ) )
316     {
317 #ifdef HAVE_DAEMON
318         char *psz_pidfile = NULL;
319
320         if( daemon( 1, 0) != 0 )
321         {
322             msg_Err( p_libvlc, "Unable to fork vlc to daemon mode" );
323             b_exit = true;
324         }
325         b_daemon = true;
326
327         /* lets check if we need to write the pidfile */
328         psz_pidfile = config_GetPsz( p_libvlc, "pidfile" );
329         if( psz_pidfile != NULL )
330         {
331             FILE *pidfile;
332             pid_t i_pid = getpid ();
333             msg_Dbg( p_libvlc, "PID is %d, writing it to %s",
334                                i_pid, psz_pidfile );
335             pidfile = utf8_fopen( psz_pidfile,"w" );
336             if( pidfile != NULL )
337             {
338                 utf8_fprintf( pidfile, "%d", (int)i_pid );
339                 fclose( pidfile );
340             }
341             else
342             {
343                 msg_Err( p_libvlc, "cannot open pid file for writing: %s (%m)",
344                          psz_pidfile );
345             }
346         }
347         free( psz_pidfile );
348
349 #else
350         pid_t i_pid;
351
352         if( ( i_pid = fork() ) < 0 )
353         {
354             msg_Err( p_libvlc, "unable to fork vlc to daemon mode" );
355             b_exit = true;
356         }
357         else if( i_pid )
358         {
359             /* This is the parent, exit right now */
360             msg_Dbg( p_libvlc, "closing parent process" );
361             b_exit = true;
362             i_ret = VLC_EEXITSUCCESS;
363         }
364         else
365         {
366             /* We are the child */
367             msg_Dbg( p_libvlc, "daemon spawned" );
368             close( STDIN_FILENO );
369             close( STDOUT_FILENO );
370             close( STDERR_FILENO );
371
372             b_daemon = true;
373         }
374 #endif
375     }
376 #endif
377
378     if( b_exit )
379     {
380         module_EndBank( p_libvlc );
381         return i_ret;
382     }
383
384     /* Check for translation config option */
385 #if defined( ENABLE_NLS ) \
386      && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
387 # if defined (WIN32) || defined (__APPLE__)
388     /* This ain't really nice to have to reload the config here but it seems
389      * the only way to do it. */
390
391     if( !config_GetInt( p_libvlc, "ignore-config" ) )
392         config_LoadConfigFile( p_libvlc, "main" );
393     config_LoadCmdLine( p_libvlc, &i_argc, ppsz_argv, true );
394
395     /* Check if the user specified a custom language */
396     psz_language = config_GetPsz( p_libvlc, "language" );
397     if( psz_language && *psz_language && strcmp( psz_language, "auto" ) )
398     {
399         bool b_cache_delete = p_libvlc_global->p_module_bank->b_cache_delete;
400
401         /* Reset the default domain */
402         SetLanguage( psz_language );
403
404         /* Translate "C" to the language code: "fr", "en_GB", "nl", "ru"... */
405         msg_Dbg( p_libvlc, "translation test: code is \"%s\"", _("C") );
406
407         module_EndBank( p_libvlc );
408         module_InitBank( p_libvlc );
409         if( !config_GetInt( p_libvlc, "ignore-config" ) )
410             config_LoadConfigFile( p_libvlc, "main" );
411         config_LoadCmdLine( p_libvlc, &i_argc, ppsz_argv, true );
412         p_libvlc_global->p_module_bank->b_cache_delete = b_cache_delete;
413     }
414     free( psz_language );
415 # endif
416 #endif
417
418     /*
419      * Load the builtins and plugins into the module_bank.
420      * We have to do it before config_Load*() because this also gets the
421      * list of configuration options exported by each module and loads their
422      * default values.
423      */
424     module_LoadBuiltins( p_libvlc );
425     module_LoadPlugins( p_libvlc );
426     if( p_libvlc->b_die )
427     {
428         b_exit = true;
429     }
430
431     msg_Dbg( p_libvlc, "module bank initialized, found %i modules",
432              p_libvlc_global->p_module_bank->i_children );
433
434     /* Check for help on modules */
435     if( (p_tmp = config_GetPsz( p_libvlc, "module" )) )
436     {
437         Help( p_libvlc, p_tmp );
438         free( p_tmp );
439         b_exit = true;
440         i_ret = VLC_EEXITSUCCESS;
441     }
442     /* Check for long help option */
443     else if( config_GetInt( p_libvlc, "longhelp" ) > 0 )
444     {
445         Help( p_libvlc, "longhelp" );
446         b_exit = true;
447         i_ret = VLC_EEXITSUCCESS;
448     }
449     /* Check for module list option */
450     else if( config_GetInt( p_libvlc, "list" ) > 0 )
451     {
452         ListModules( p_libvlc, false );
453         b_exit = true;
454         i_ret = VLC_EEXITSUCCESS;
455     }
456     else if( config_GetInt( p_libvlc, "list-verbose" ) > 0 )
457     {
458         ListModules( p_libvlc, true );
459         b_exit = true;
460         i_ret = VLC_EEXITSUCCESS;
461     }
462
463     /* Check for config file options */
464     if( !config_GetInt( p_libvlc, "ignore-config" ) )
465     {
466         if( config_GetInt( p_libvlc, "reset-config" ) > 0 )
467         {
468             config_ResetAll( p_libvlc );
469             config_LoadCmdLine( p_libvlc, &i_argc, ppsz_argv, true );
470             config_SaveConfigFile( p_libvlc, NULL );
471         }
472         if( config_GetInt( p_libvlc, "save-config" ) > 0 )
473         {
474             config_LoadConfigFile( p_libvlc, NULL );
475             config_LoadCmdLine( p_libvlc, &i_argc, ppsz_argv, true );
476             config_SaveConfigFile( p_libvlc, NULL );
477         }
478     }
479
480     if( b_exit )
481     {
482         module_EndBank( p_libvlc );
483         return i_ret;
484     }
485
486     /*
487      * Init device values
488      */
489     InitDeviceValues( p_libvlc );
490
491     /*
492      * Override default configuration with config file settings
493      */
494     if( !config_GetInt( p_libvlc, "ignore-config" ) )
495         config_LoadConfigFile( p_libvlc, NULL );
496
497     /*
498      * Override configuration with command line settings
499      */
500     if( config_LoadCmdLine( p_libvlc, &i_argc, ppsz_argv, false ) )
501     {
502 #ifdef WIN32
503         ShowConsole( false );
504         /* Pause the console because it's destroyed when we exit */
505         fprintf( stderr, "The command line options couldn't be loaded, check "
506                  "that they are valid.\n" );
507         PauseConsole();
508 #endif
509         module_EndBank( p_libvlc );
510         return VLC_EGENERIC;
511     }
512
513     /*
514      * System specific configuration
515      */
516     system_Configure( p_libvlc, &i_argc, ppsz_argv );
517
518 /* FIXME: could be replaced by using Unix sockets */
519 #ifdef HAVE_DBUS_3
520     dbus_threads_init_default();
521
522     if( config_GetInt( p_libvlc, "one-instance" ) > 0 )
523     {
524         /* Initialise D-Bus interface, check for other instances */
525         DBusConnection  *p_conn = NULL;
526         DBusError       dbus_error;
527
528         dbus_error_init( &dbus_error );
529
530         /* connect to the session bus */
531         p_conn = dbus_bus_get( DBUS_BUS_SESSION, &dbus_error );
532         if( !p_conn )
533         {
534             msg_Err( p_libvlc, "Failed to connect to D-Bus session daemon: %s",
535                     dbus_error.message );
536             dbus_error_free( &dbus_error );
537         }
538         else
539         {
540             /* check if VLC is available on the bus
541              * if not: D-Bus control is not enabled on the other
542              * instance and we can't pass MRLs to it */
543             DBusMessage *p_test_msg = NULL;
544             DBusMessage *p_test_reply = NULL;
545             p_test_msg =  dbus_message_new_method_call(
546                     "org.mpris.vlc", "/",
547                     "org.freedesktop.MediaPlayer", "Identity" );
548             /* block until a reply arrives */
549             p_test_reply = dbus_connection_send_with_reply_and_block(
550                     p_conn, p_test_msg, -1, &dbus_error );
551             dbus_message_unref( p_test_msg );
552             if( p_test_reply == NULL )
553             {
554                 dbus_error_free( &dbus_error );
555                 msg_Dbg( p_libvlc, "No Media Player is running. "
556                         "Continuing normally." );
557             }
558             else
559             {
560                 int i_input;
561                 DBusMessage* p_dbus_msg = NULL;
562                 DBusMessageIter dbus_args;
563                 DBusPendingCall* p_dbus_pending = NULL;
564                 dbus_bool_t b_play;
565
566                 dbus_message_unref( p_test_reply );
567                 msg_Warn( p_libvlc, "Another Media Player is running. Exiting");
568
569                 for( i_input = optind;i_input < i_argc;i_input++ )
570                 {
571                     msg_Dbg( p_libvlc, "Adds %s to the running Media Player",
572                             ppsz_argv[i_input] );
573
574                     p_dbus_msg = dbus_message_new_method_call(
575                             "org.mpris.vlc", "/TrackList",
576                             "org.freedesktop.MediaPlayer", "AddTrack" );
577
578                     if ( NULL == p_dbus_msg )
579                     {
580                         msg_Err( p_libvlc, "D-Bus problem" );
581                         system_End( p_libvlc );
582                         exit( VLC_ETIMEOUT );
583                     }
584
585                     /* append MRLs */
586                     dbus_message_iter_init_append( p_dbus_msg, &dbus_args );
587                     if ( !dbus_message_iter_append_basic( &dbus_args,
588                                 DBUS_TYPE_STRING, &ppsz_argv[i_input] ) )
589                     {
590                         msg_Err( p_libvlc, "Out of memory" );
591                         dbus_message_unref( p_dbus_msg );
592                         system_End( p_libvlc );
593                         exit( VLC_ENOMEM );
594                     }
595                     b_play = TRUE;
596                     if( config_GetInt( p_libvlc, "playlist-enqueue" ) > 0 )
597                         b_play = FALSE;
598                     if ( !dbus_message_iter_append_basic( &dbus_args,
599                                 DBUS_TYPE_BOOLEAN, &b_play ) )
600                     {
601                         msg_Err( p_libvlc, "Out of memory" );
602                         dbus_message_unref( p_dbus_msg );
603                         system_End( p_libvlc );
604                         exit( VLC_ENOMEM );
605                     }
606
607                     /* send message and get a handle for a reply */
608                     if ( !dbus_connection_send_with_reply ( p_conn,
609                                 p_dbus_msg, &p_dbus_pending, -1 ) )
610                     {
611                         msg_Err( p_libvlc, "D-Bus problem" );
612                         dbus_message_unref( p_dbus_msg );
613                         system_End( p_libvlc );
614                         exit( VLC_ETIMEOUT );
615                     }
616
617                     if ( NULL == p_dbus_pending )
618                     {
619                         msg_Err( p_libvlc, "D-Bus problem" );
620                         dbus_message_unref( p_dbus_msg );
621                         system_End( p_libvlc );
622                         exit( VLC_ETIMEOUT );
623                     }
624                     dbus_connection_flush( p_conn );
625                     dbus_message_unref( p_dbus_msg );
626                     /* block until we receive a reply */
627                     dbus_pending_call_block( p_dbus_pending );
628                     dbus_pending_call_unref( p_dbus_pending );
629                 } /* processes all command line MRLs */
630
631                 /* bye bye */
632                 system_End( p_libvlc );
633                 exit( VLC_SUCCESS );
634             }
635         }
636         /* we unreference the connection when we've finished with it */
637         if( p_conn ) dbus_connection_unref( p_conn );
638     }
639 #endif
640
641     /*
642      * Message queue options
643      */
644
645     var_Create( p_libvlc, "verbose", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
646     if( config_GetInt( p_libvlc, "quiet" ) > 0 )
647     {
648         val.i_int = -1;
649         var_Set( p_libvlc, "verbose", val );
650     }
651     var_AddCallback( p_libvlc, "verbose", VerboseCallback, NULL );
652     var_Change( p_libvlc, "verbose", VLC_VAR_TRIGGER_CALLBACKS, NULL, NULL );
653
654     if( priv->b_color )
655         priv->b_color = config_GetInt( p_libvlc, "color" ) > 0;
656
657     /*
658      * Output messages that may still be in the queue
659      */
660     msg_Flush( p_libvlc );
661
662     if( !config_GetInt( p_libvlc, "fpu" ) )
663         cpu_flags &= ~CPU_CAPABILITY_FPU;
664
665 #if defined( __i386__ ) || defined( __x86_64__ )
666     if( !config_GetInt( p_libvlc, "mmx" ) )
667         cpu_flags &= ~CPU_CAPABILITY_MMX;
668     if( !config_GetInt( p_libvlc, "3dn" ) )
669         cpu_flags &= ~CPU_CAPABILITY_3DNOW;
670     if( !config_GetInt( p_libvlc, "mmxext" ) )
671         cpu_flags &= ~CPU_CAPABILITY_MMXEXT;
672     if( !config_GetInt( p_libvlc, "sse" ) )
673         cpu_flags &= ~CPU_CAPABILITY_SSE;
674     if( !config_GetInt( p_libvlc, "sse2" ) )
675         cpu_flags &= ~CPU_CAPABILITY_SSE2;
676 #endif
677 #if defined( __powerpc__ ) || defined( __ppc__ ) || defined( __ppc64__ )
678     if( !config_GetInt( p_libvlc, "altivec" ) )
679         cpu_flags &= ~CPU_CAPABILITY_ALTIVEC;
680 #endif
681
682 #define PRINT_CAPABILITY( capability, string )                              \
683     if( vlc_CPU() & capability )                                            \
684     {                                                                       \
685         strncat( p_capabilities, string " ",                                \
686                  sizeof(p_capabilities) - strlen(p_capabilities) );         \
687         p_capabilities[sizeof(p_capabilities) - 1] = '\0';                  \
688     }
689
690     p_capabilities[0] = '\0';
691     PRINT_CAPABILITY( CPU_CAPABILITY_486, "486" );
692     PRINT_CAPABILITY( CPU_CAPABILITY_586, "586" );
693     PRINT_CAPABILITY( CPU_CAPABILITY_PPRO, "Pentium Pro" );
694     PRINT_CAPABILITY( CPU_CAPABILITY_MMX, "MMX" );
695     PRINT_CAPABILITY( CPU_CAPABILITY_3DNOW, "3DNow!" );
696     PRINT_CAPABILITY( CPU_CAPABILITY_MMXEXT, "MMXEXT" );
697     PRINT_CAPABILITY( CPU_CAPABILITY_SSE, "SSE" );
698     PRINT_CAPABILITY( CPU_CAPABILITY_SSE2, "SSE2" );
699     PRINT_CAPABILITY( CPU_CAPABILITY_ALTIVEC, "AltiVec" );
700     PRINT_CAPABILITY( CPU_CAPABILITY_FPU, "FPU" );
701     msg_Dbg( p_libvlc, "CPU has capabilities %s", p_capabilities );
702
703     /*
704      * Choose the best memcpy module
705      */
706     priv->p_memcpy_module = module_Need( p_libvlc, "memcpy", "$memcpy", 0 );
707
708     priv->b_stats = config_GetInt( p_libvlc, "stats" ) > 0;
709     priv->i_timers = 0;
710     priv->pp_timers = NULL;
711
712     /* Init stats */
713     p_libvlc->p_stats = (global_stats_t *)malloc( sizeof( global_stats_t ) );
714     if( !p_libvlc->p_stats )
715     {
716         vlc_object_release( p_libvlc );
717         return VLC_ENOMEM;
718     }
719     vlc_mutex_init( &p_libvlc->p_stats->lock );
720     priv->p_stats_computer = NULL;
721
722     /* Init the array that holds every input item */
723     ARRAY_INIT( priv->input_items );
724     priv->i_last_input_id = 0;
725
726     /*
727      * Initialize hotkey handling
728      */
729     var_Create( p_libvlc, "key-pressed", VLC_VAR_INTEGER );
730     var_Create( p_libvlc, "key-action", VLC_VAR_INTEGER );
731     p_libvlc->p_hotkeys = malloc( libvlc_hotkeys_size );
732     /* Do a copy (we don't need to modify the strings) */
733     memcpy( p_libvlc->p_hotkeys, libvlc_hotkeys, libvlc_hotkeys_size );
734     var_AddCallback( p_libvlc, "key-pressed", vlc_key_to_action,
735                      p_libvlc->p_hotkeys );
736
737     /* Initialize interaction */
738     priv->p_interaction = interaction_Init( p_libvlc );
739
740     /* Initialize playlist and get commandline files */
741     playlist_ThreadCreate( p_libvlc );
742     if( !p_libvlc->p_playlist )
743     {
744         msg_Err( p_libvlc, "playlist initialization failed" );
745         if( priv->p_memcpy_module != NULL )
746         {
747             module_Unneed( p_libvlc, priv->p_memcpy_module );
748         }
749         module_EndBank( p_libvlc );
750         return VLC_EGENERIC;
751     }
752     p_playlist = p_libvlc->p_playlist;
753
754     psz_modules = config_GetPsz( p_playlist, "services-discovery" );
755     if( psz_modules && *psz_modules )
756     {
757         /* Add service discovery modules */
758         playlist_ServicesDiscoveryAdd( p_playlist, psz_modules );
759     }
760     free( psz_modules );
761
762 #ifdef ENABLE_SOUT
763     /* Initialize VLM if vlm-conf is specified */
764     psz_parser = config_GetPsz( p_libvlc, "vlm-conf" );
765     if( psz_parser && *psz_parser )
766     {
767         priv->p_vlm = vlm_New( p_libvlc );
768         if( !priv->p_vlm )
769             msg_Err( p_libvlc, "VLM initialization failed" );
770     }
771     free( psz_parser );
772 #endif
773
774     /*
775      * Load background interfaces
776      */
777     psz_modules = config_GetPsz( p_libvlc, "extraintf" );
778     psz_control = config_GetPsz( p_libvlc, "control" );
779
780     if( psz_modules && *psz_modules && psz_control && *psz_control )
781     {
782         psz_modules = (char *)realloc( psz_modules, strlen( psz_modules ) +
783                                                     strlen( psz_control ) + 1 );
784         sprintf( psz_modules, "%s:%s", psz_modules, psz_control );
785     }
786     else if( psz_control && *psz_control )
787     {
788         free( psz_modules );
789         psz_modules = strdup( psz_control );
790     }
791
792     psz_parser = psz_modules;
793     while ( psz_parser && *psz_parser )
794     {
795         char *psz_module, *psz_temp;
796         psz_module = psz_parser;
797         psz_parser = strchr( psz_module, ':' );
798         if ( psz_parser )
799         {
800             *psz_parser = '\0';
801             psz_parser++;
802         }
803         psz_temp = (char *)malloc( strlen(psz_module) + sizeof(",none") );
804         if( psz_temp )
805         {
806             sprintf( psz_temp, "%s,none", psz_module );
807             VLC_AddIntf( 0, psz_temp, false, false );
808             free( psz_temp );
809         }
810     }
811     free( psz_modules );
812     free( psz_control );
813
814     /*
815      * Always load the hotkeys interface if it exists
816      */
817     VLC_AddIntf( 0, "hotkeys,none", false, false );
818
819 #ifdef HAVE_DBUS_3
820     /* loads dbus control interface if in one-instance mode
821      * we do it only when playlist exists, because dbus module needs it */
822     if( config_GetInt( p_libvlc, "one-instance" ) > 0 )
823         VLC_AddIntf( 0, "dbus,none", false, false );
824
825     /* Prevents the power management daemon from suspending the system
826      * when VLC is active */
827     if( config_GetInt( p_libvlc, "inhibit" ) > 0 )
828         VLC_AddIntf( 0, "inhibit,none", false, false );
829 #endif
830
831     /*
832      * If needed, load the Xscreensaver interface
833      * Currently, only for X
834      */
835 #ifdef HAVE_X11_XLIB_H
836     if( config_GetInt( p_libvlc, "disable-screensaver" ) )
837     {
838         VLC_AddIntf( 0, "screensaver,none", false, false );
839     }
840 #endif
841
842     if( config_GetInt( p_libvlc, "file-logging" ) > 0 )
843     {
844         VLC_AddIntf( 0, "logger,none", false, false );
845     }
846 #ifdef HAVE_SYSLOG_H
847     if( config_GetInt( p_libvlc, "syslog" ) > 0 )
848     {
849         const char *psz_logmode = "logmode=syslog";
850         libvlc_InternalAddIntf( p_libvlc, "logger,none", false, false,
851                                 1, &psz_logmode );
852     }
853 #endif
854
855     if( config_GetInt( p_libvlc, "show-intf" ) > 0 )
856     {
857         VLC_AddIntf( 0, "showintf,none", false, false );
858     }
859
860     if( config_GetInt( p_libvlc, "network-synchronisation") > 0 )
861     {
862         VLC_AddIntf( 0, "netsync,none", false, false );
863     }
864
865 #ifdef WIN32
866     if( config_GetInt( p_libvlc, "prefer-system-codecs") > 0 )
867     {
868         char *psz_codecs = config_GetPsz( p_playlist, "codec" );
869         if( psz_codecs )
870         {
871             char *psz_morecodecs;
872             asprintf(&psz_morecodecs, "%s,dmo,quicktime", psz_codecs);
873             if( psz_morecodecs )
874             {
875                 config_PutPsz( p_libvlc, "codec", psz_morecodecs);
876                 free( psz_morecodecs );
877             }
878         }
879         else
880             config_PutPsz( p_libvlc, "codec", "dmo,quicktime");
881         free( psz_codecs );
882     }
883 #endif
884
885     /*
886      * FIXME: kludge to use a p_libvlc-local variable for the Mozilla plugin
887      */
888     var_Create( p_libvlc, "drawable", VLC_VAR_INTEGER );
889     var_Create( p_libvlc, "drawable-view-top", VLC_VAR_INTEGER );
890     var_Create( p_libvlc, "drawable-view-left", VLC_VAR_INTEGER );
891     var_Create( p_libvlc, "drawable-view-bottom", VLC_VAR_INTEGER );
892     var_Create( p_libvlc, "drawable-view-right", VLC_VAR_INTEGER );
893     var_Create( p_libvlc, "drawable-clip-top", VLC_VAR_INTEGER );
894     var_Create( p_libvlc, "drawable-clip-left", VLC_VAR_INTEGER );
895     var_Create( p_libvlc, "drawable-clip-bottom", VLC_VAR_INTEGER );
896     var_Create( p_libvlc, "drawable-clip-right", VLC_VAR_INTEGER );
897
898     /* Create volume callback system. */
899     var_Create( p_libvlc, "volume-change", VLC_VAR_BOOL );
900
901     /*
902      * Get input filenames given as commandline arguments
903      */
904     GetFilenames( p_libvlc, i_argc, ppsz_argv );
905
906     /*
907      * Get --open argument
908      */
909     var_Create( p_libvlc, "open", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
910     var_Get( p_libvlc, "open", &val );
911     if ( val.psz_string != NULL && *val.psz_string )
912     {
913         VLC_AddTarget( p_libvlc->i_object_id, val.psz_string, NULL, 0,
914                        PLAYLIST_INSERT, 0 );
915     }
916     free( val.psz_string );
917
918     return VLC_SUCCESS;
919 }
920
921 /**
922  * Cleanup a libvlc instance. The instance is not completely deallocated
923  * \param p_libvlc the instance to clean
924  */
925 int libvlc_InternalCleanup( libvlc_int_t *p_libvlc )
926 {
927     intf_thread_t      * p_intf = NULL;
928     vout_thread_t      * p_vout = NULL;
929     aout_instance_t    * p_aout = NULL;
930     libvlc_priv_t      *priv = libvlc_priv (p_libvlc);
931
932     /* Ask the interfaces to stop and destroy them */
933     msg_Dbg( p_libvlc, "removing all interfaces" );
934     while( (p_intf = vlc_object_find( p_libvlc, VLC_OBJECT_INTF, FIND_CHILD )) )
935     {
936         intf_StopThread( p_intf );
937         vlc_object_detach( p_intf );
938         vlc_object_release( p_intf );
939         intf_Destroy( p_intf );
940         p_intf = NULL;
941     }
942
943     /* Free playlist */
944     msg_Dbg( p_libvlc, "removing playlist" );
945     playlist_ThreadDestroy( p_libvlc->p_playlist );
946
947     /* Free video outputs */
948     msg_Dbg( p_libvlc, "removing all video outputs" );
949     while( (p_vout = vlc_object_find( p_libvlc, VLC_OBJECT_VOUT, FIND_CHILD )) )
950     {
951         vlc_object_detach( p_vout );
952         vlc_object_release( p_vout );
953         vout_Destroy( p_vout );
954     }
955
956     /* Free audio outputs */
957     msg_Dbg( p_libvlc, "removing all audio outputs" );
958     while( (p_aout = vlc_object_find( p_libvlc, VLC_OBJECT_AOUT, FIND_CHILD )) )
959     {
960         vlc_object_detach( (vlc_object_t *)p_aout );
961         vlc_object_release( (vlc_object_t *)p_aout );
962         aout_Delete( p_aout );
963     }
964
965 #ifdef ENABLE_SOUT
966     sout_instance_t    * p_sout;
967
968     p_sout = vlc_object_find( p_libvlc, VLC_OBJECT_SOUT, FIND_CHILD );
969     if( p_sout )
970     {
971         msg_Dbg( p_sout, "removing kept stream output" );
972         vlc_object_detach( (vlc_object_t*)p_sout );
973         vlc_object_release( (vlc_object_t*)p_sout );
974         sout_DeleteInstance( p_sout );
975     }
976
977     /* Destroy VLM if created in libvlc_InternalInit */
978     if( priv->p_vlm )
979     {
980         vlm_Delete( priv->p_vlm );
981     }
982 #endif
983
984     /* Free interaction */
985     msg_Dbg( p_libvlc, "removing interaction" );
986     vlc_object_release( priv->p_interaction );
987
988     stats_TimersDumpAll( p_libvlc );
989     stats_TimersCleanAll( p_libvlc );
990
991 #ifdef ENABLE_SOUT
992     announce_handler_t * p_announce;
993
994     /* Free announce handler(s?) */
995     while( (p_announce = vlc_object_find( p_libvlc, VLC_OBJECT_ANNOUNCE,
996                                                  FIND_CHILD ) ) )
997     {
998         msg_Dbg( p_libvlc, "removing announce handler" );
999         vlc_object_detach( p_announce );
1000         vlc_object_release( p_announce );
1001         announce_HandlerDestroy( p_announce );
1002     }
1003 #endif
1004
1005     bool b_clean = true;
1006     FOREACH_ARRAY( input_item_t *p_del, priv->input_items )
1007         msg_Err( p_libvlc, "input item %p has not been deleted properly: refcount %d, name %s",
1008             p_del, p_del->i_gc_refcount, p_del->psz_name ? p_del->psz_name : "(null)" );
1009         b_clean = false;
1010     FOREACH_END();
1011     assert( b_clean );
1012     ARRAY_RESET( priv->input_items );
1013
1014     msg_Dbg( p_libvlc, "removing stats" );
1015     vlc_mutex_destroy( &p_libvlc->p_stats->lock );
1016     FREENULL( p_libvlc->p_stats );
1017
1018     return VLC_SUCCESS;
1019 }
1020
1021 /**
1022  * Destroy everything.
1023  * This function requests the running threads to finish, waits for their
1024  * termination, and destroys their structure.
1025  * It stops the thread systems: no instance can run after this has run
1026  * \param p_libvlc the instance to destroy
1027  * \param b_release whether we should do a release on the instance
1028  */
1029 int libvlc_InternalDestroy( libvlc_int_t *p_libvlc, bool b_release )
1030 {
1031     if( !p_libvlc )
1032         return VLC_EGENERIC;
1033
1034     libvlc_priv_t *priv = libvlc_priv (p_libvlc);
1035
1036 #ifndef WIN32
1037     char* psz_pidfile = NULL;
1038
1039     if( config_GetInt( p_libvlc, "daemon" ) > 0 )
1040     {
1041         psz_pidfile = config_GetPsz( p_libvlc, "pidfile" );
1042         if( psz_pidfile != NULL )
1043         {
1044             msg_Dbg( p_libvlc, "removing pid file %s", psz_pidfile );
1045             if( unlink( psz_pidfile ) == -1 )
1046             {
1047                 msg_Dbg( p_libvlc, "removing pid file %s: %m",
1048                         psz_pidfile );
1049             }
1050         }
1051         free( psz_pidfile );
1052     }
1053 #endif
1054
1055     if( priv->p_memcpy_module )
1056     {
1057         module_Unneed( p_libvlc, priv->p_memcpy_module );
1058         priv->p_memcpy_module = NULL;
1059     }
1060
1061     /* Free module bank. It is refcounted, so we call this each time  */
1062     module_EndBank( p_libvlc );
1063
1064     FREENULL( p_libvlc->psz_homedir );
1065     free( priv->psz_configdir );
1066     free( priv->psz_datadir );
1067     free( priv->psz_cachedir );
1068     FREENULL( priv->psz_configfile );
1069     var_DelCallback( p_libvlc, "key-pressed", vlc_key_to_action,
1070                      p_libvlc->p_hotkeys );
1071     FREENULL( p_libvlc->p_hotkeys );
1072
1073     vlc_mutex_t *lock = var_AcquireMutex( "libvlc" );
1074     i_instances--;
1075
1076     if( i_instances == 0 )
1077     {
1078         /* System specific cleaning code */
1079         system_End( p_libvlc );
1080     }
1081     vlc_mutex_unlock( lock );
1082
1083     msg_Flush( p_libvlc );
1084     msg_Destroy( p_libvlc );
1085
1086     /* Destroy mutexes */
1087     vlc_mutex_destroy( &priv->config_lock );
1088     vlc_mutex_destroy( &priv->timer_lock );
1089
1090     if( b_release ) vlc_object_release( p_libvlc );
1091     vlc_object_release( p_libvlc );
1092     p_libvlc = NULL;
1093
1094     /* Stop thread system: last one out please shut the door!
1095      * The number of initializations of the thread system is counted, we
1096      * can call this each time */
1097     vlc_threads_end ();
1098
1099     return VLC_SUCCESS;
1100 }
1101
1102 /**
1103  * Add an interface plugin and run it
1104  */
1105 int libvlc_InternalAddIntf( libvlc_int_t *p_libvlc,
1106                             char const *psz_module,
1107                             bool b_block, bool b_play,
1108                             int i_options, const char *const *ppsz_options )
1109 {
1110     int i_err;
1111     intf_thread_t *p_intf = NULL;
1112
1113     if( !p_libvlc )
1114         return VLC_EGENERIC;
1115
1116     if( !psz_module ) /* requesting the default interface */
1117     {
1118         char *psz_interface = config_GetPsz( p_libvlc, "intf" );
1119         if( !psz_interface || !*psz_interface ) /* "intf" has not been set */
1120             msg_Info( p_libvlc, _("Running vlc with the default interface. Use 'cvlc' to use vlc without interface.") );
1121         free( psz_interface );
1122     }
1123
1124 #ifndef WIN32
1125     if( b_daemon && b_block && !psz_module )
1126     {
1127         /* Daemon mode hack.
1128          * We prefer the dummy interface if none is specified. */
1129         char *psz_interface = config_GetPsz( p_libvlc, "intf" );
1130         if( !psz_interface || !*psz_interface ) psz_module = "dummy";
1131         free( psz_interface );
1132     }
1133 #endif
1134
1135     /* Try to create the interface */
1136     p_intf = intf_Create( p_libvlc, psz_module ? psz_module : "$intf",
1137                           i_options, ppsz_options );
1138     if( p_intf == NULL )
1139     {
1140         msg_Err( p_libvlc, "interface \"%s\" initialization failed",
1141                  psz_module );
1142         return VLC_EGENERIC;
1143     }
1144
1145     /* Interface doesn't handle play on start so do it ourselves */
1146     if( !p_intf->b_play && b_play )
1147         playlist_Play( p_libvlc->p_playlist );
1148
1149     /* Try to run the interface */
1150     p_intf->b_play = b_play;
1151     i_err = intf_RunThread( p_intf );
1152     if( i_err || p_intf->b_should_run_on_first_thread )
1153     {
1154         vlc_object_detach( p_intf );
1155         intf_Destroy( p_intf );
1156         p_intf = NULL;
1157         return i_err;
1158     }
1159
1160     if( b_block )
1161     {
1162         /* FIXME: should be moved to interface/interface.c */
1163         if( p_intf->pf_run )
1164             vlc_thread_join( p_intf );
1165         else
1166             while( vlc_object_lock_and_wait( p_intf ) == 0 );
1167
1168         vlc_object_detach( p_intf );
1169         intf_Destroy( p_intf );
1170     }
1171
1172     return VLC_SUCCESS;
1173 };
1174
1175 #if defined( ENABLE_NLS ) && (defined (__APPLE__) || defined (WIN32)) && \
1176     ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
1177 /*****************************************************************************
1178  * SetLanguage: set the interface language.
1179  *****************************************************************************
1180  * We set the LC_MESSAGES locale category for interface messages and buttons,
1181  * as well as the LC_CTYPE category for string sorting and possible wide
1182  * character support.
1183  *****************************************************************************/
1184 static void SetLanguage ( const char *psz_lang )
1185 {
1186 #ifdef __APPLE__
1187     /* I need that under Darwin, please check it doesn't disturb
1188      * other platforms. --Meuuh */
1189     setenv( "LANG", psz_lang, 1 );
1190
1191 #else
1192     /* We set LC_ALL manually because it is the only way to set
1193      * the language at runtime under eg. Windows. Beware that this
1194      * makes the environment unconsistent when libvlc is unloaded and
1195      * should probably be moved to a safer place like vlc.c. */
1196     static char psz_lcall[20];
1197     snprintf( psz_lcall, 19, "LC_ALL=%s", psz_lang );
1198     psz_lcall[19] = '\0';
1199     putenv( psz_lcall );
1200 #endif
1201
1202     setlocale( LC_ALL, psz_lang );
1203 }
1204 #endif
1205
1206
1207 static inline int LoadMessages (void)
1208 {
1209 #if defined( ENABLE_NLS ) \
1210      && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
1211     /* Specify where to find the locales for current domain */
1212 #if !defined( __APPLE__ ) && !defined( WIN32 ) && !defined( SYS_BEOS )
1213     static const char psz_path[] = LOCALEDIR;
1214 #else
1215     char psz_path[1024];
1216     if (snprintf (psz_path, sizeof (psz_path), "%s/%s",
1217                   vlc_global()->psz_vlcpath, "locale")
1218                      >= (int)sizeof (psz_path))
1219         return -1;
1220
1221 #endif
1222     if (bindtextdomain (PACKAGE_NAME, psz_path) == NULL)
1223     {
1224         fprintf (stderr, "Warning: cannot bind text domain "PACKAGE_NAME
1225                          " to directory %s\n", psz_path);
1226         return -1;
1227     }
1228
1229     /* LibVLC wants all messages in UTF-8.
1230      * Unfortunately, we cannot ask UTF-8 for strerror_r(), strsignal_r()
1231      * and other functions that are not part of our text domain.
1232      */
1233     if (bind_textdomain_codeset (PACKAGE_NAME, "UTF-8") == NULL)
1234     {
1235         fprintf (stderr, "Error: cannot set Unicode encoding for text domain "
1236                          PACKAGE_NAME"\n");
1237         // Unbinds the text domain to avoid broken encoding
1238         bindtextdomain (PACKAGE_NAME, "DOES_NOT_EXIST");
1239         return -1;
1240     }
1241
1242     /* LibVLC does NOT set the default textdomain, since it is a library.
1243      * This could otherwise break programs using LibVLC (other than VLC).
1244      * textdomain (PACKAGE_NAME);
1245      */
1246 #endif
1247     return 0;
1248 }
1249
1250 /*****************************************************************************
1251  * GetFilenames: parse command line options which are not flags
1252  *****************************************************************************
1253  * Parse command line for input files as well as their associated options.
1254  * An option always follows its associated input and begins with a ":".
1255  *****************************************************************************/
1256 static int GetFilenames( libvlc_int_t *p_vlc, int i_argc, const char *ppsz_argv[] )
1257 {
1258     int i_opt, i_options;
1259
1260     /* We assume that the remaining parameters are filenames
1261      * and their input options */
1262     for( i_opt = i_argc - 1; i_opt >= optind; i_opt-- )
1263     {
1264         i_options = 0;
1265
1266         /* Count the input options */
1267         while( *ppsz_argv[ i_opt ] == ':' && i_opt > optind )
1268         {
1269             i_options++;
1270             i_opt--;
1271         }
1272
1273         /* TODO: write an internal function of this one, to avoid
1274          *       unnecessary lookups. */
1275
1276         VLC_AddTarget( p_vlc->i_object_id, ppsz_argv[i_opt],
1277                        ( i_options ? &ppsz_argv[i_opt + 1] :
1278                                         NULL ), i_options,
1279                        PLAYLIST_INSERT, 0 );
1280     }
1281
1282     return VLC_SUCCESS;
1283 }
1284
1285 /*****************************************************************************
1286  * Help: print program help
1287  *****************************************************************************
1288  * Print a short inline help. Message interface is initialized at this stage.
1289  *****************************************************************************/
1290 static void Help( libvlc_int_t *p_this, char const *psz_help_name )
1291 {
1292 #ifdef WIN32
1293     ShowConsole( true );
1294 #endif
1295
1296     if( psz_help_name && !strcmp( psz_help_name, "help" ) )
1297     {
1298         utf8_fprintf( stdout, vlc_usage, p_this->psz_object_name );
1299         Usage( p_this, "help" );
1300         Usage( p_this, "main" );
1301     }
1302     else if( psz_help_name && !strcmp( psz_help_name, "longhelp" ) )
1303     {
1304         utf8_fprintf( stdout, vlc_usage, p_this->psz_object_name );
1305         Usage( p_this, NULL );
1306     }
1307     else if( psz_help_name )
1308     {
1309         Usage( p_this, psz_help_name );
1310     }
1311
1312 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1313     PauseConsole();
1314 #endif
1315 }
1316
1317 /*****************************************************************************
1318  * Usage: print module usage
1319  *****************************************************************************
1320  * Print a short inline help. Message interface is initialized at this stage.
1321  *****************************************************************************/
1322 static void Usage( libvlc_int_t *p_this, char const *psz_module_name )
1323 {
1324 #define FORMAT_STRING "  %s --%s%s%s%s%s%s%s "
1325     /* short option ------'    | | | | | | |
1326      * option name ------------' | | | | | |
1327      * <bra ---------------------' | | | | |
1328      * option type or "" ----------' | | | |
1329      * ket> -------------------------' | | |
1330      * padding spaces -----------------' | |
1331      * comment --------------------------' |
1332      * comment suffix ---------------------'
1333      *
1334      * The purpose of having bra and ket is that we might i18n them as well.
1335      */
1336
1337 #   define COL(x)  "\033[" #x ";1m"
1338 #   define RED     COL(31)
1339 #   define GREEN   COL(32)
1340 #   define YELLOW  COL(33)
1341 #   define BLUE    COL(34)
1342 #   define MAGENTA COL(35)
1343 #   define CYAN    COL(36)
1344 #   define WHITE   COL(0)
1345 #   define GRAY    "\033[0m"
1346 #define COLOR_FORMAT_STRING (WHITE"  %s --%s"YELLOW"%s%s%s%s%s%s "GRAY)
1347 #define COLOR_FORMAT_STRING_BOOL (WHITE"  %s --%s%s%s%s%s%s%s "GRAY)
1348
1349 #define LINE_START 8
1350 #define PADDING_SPACES 25
1351 #ifdef WIN32
1352 #   define OPTION_VALUE_SEP "="
1353 #else
1354 #   define OPTION_VALUE_SEP " "
1355 #endif
1356     vlc_list_t *p_list = NULL;
1357     char psz_spaces_text[PADDING_SPACES+LINE_START+1];
1358     char psz_spaces_longtext[LINE_START+3];
1359     char psz_format[sizeof(COLOR_FORMAT_STRING)];
1360     char psz_format_bool[sizeof(COLOR_FORMAT_STRING_BOOL)];
1361     char psz_buffer[10000];
1362     char psz_short[4];
1363     int i_index;
1364     int i_width = ConsoleWidth() - (PADDING_SPACES+LINE_START+1);
1365     int i_width_description = i_width + PADDING_SPACES - 1;
1366     bool b_advanced    = config_GetInt( p_this, "advanced" ) > 0;
1367     bool b_description = config_GetInt( p_this, "help-verbose" ) > 0;
1368     bool b_description_hack;
1369     bool b_color       = config_GetInt( p_this, "color" ) > 0;
1370     bool b_has_advanced = false;
1371
1372     memset( psz_spaces_text, ' ', PADDING_SPACES+LINE_START );
1373     psz_spaces_text[PADDING_SPACES+LINE_START] = '\0';
1374     memset( psz_spaces_longtext, ' ', LINE_START+2 );
1375     psz_spaces_longtext[LINE_START+2] = '\0';
1376 #ifdef WIN32
1377     b_color = false; // don't put color control codes in a .txt file
1378 #endif
1379
1380     if( b_color )
1381     {
1382         strcpy( psz_format, COLOR_FORMAT_STRING );
1383         strcpy( psz_format_bool, COLOR_FORMAT_STRING_BOOL );
1384     }
1385     else
1386     {
1387         strcpy( psz_format, FORMAT_STRING );
1388         strcpy( psz_format_bool, FORMAT_STRING );
1389     }
1390
1391     /* List all modules */
1392     p_list = vlc_list_find( p_this, VLC_OBJECT_MODULE, FIND_ANYWHERE );
1393
1394     /* Ugly hack to make sure that the help options always come first
1395      * (part 1) */
1396     if( !psz_module_name )
1397         Usage( p_this, "help" );
1398
1399     /* Enumerate the config for each module */
1400     for( i_index = 0; i_index < p_list->i_count; i_index++ )
1401     {
1402         bool b_help_module;
1403         module_t *p_parser = (module_t *)p_list->p_values[i_index].p_object;
1404         module_config_t *p_item = NULL;
1405         module_config_t *p_end = p_parser->p_config + p_parser->confsize;
1406
1407         if( psz_module_name && strcmp( psz_module_name,
1408                                        p_parser->psz_object_name ) )
1409         {
1410             const char *const *pp_shortcut = p_parser->pp_shortcuts;
1411             while( *pp_shortcut )
1412             {
1413                 if( !strcmp( psz_module_name, *pp_shortcut ) )
1414                     break;
1415                 pp_shortcut ++;
1416             }
1417             if( !*pp_shortcut )
1418                 continue;
1419         }
1420
1421         /* Ignore modules without config options */
1422         if( !p_parser->i_config_items )
1423         {
1424             continue;
1425         }
1426
1427         b_help_module = !strcmp( "help", p_parser->psz_object_name );
1428         /* Ugly hack to make sure that the help options always come first
1429          * (part 2) */
1430         if( !psz_module_name && b_help_module )
1431             continue;
1432
1433         /* Ignore modules with only advanced config options if requested */
1434         if( !b_advanced )
1435         {
1436             for( p_item = p_parser->p_config;
1437                  p_item < p_end;
1438                  p_item++ )
1439             {
1440                 if( (p_item->i_type & CONFIG_ITEM) &&
1441                     !p_item->b_advanced ) break;
1442             }
1443         }
1444
1445         /* Print name of module */
1446         if( strcmp( "main", p_parser->psz_object_name ) )
1447         {
1448             if( b_color )
1449                 utf8_fprintf( stdout, "\n " GREEN "%s" GRAY "\n",
1450                               p_parser->psz_longname );
1451             else
1452                 utf8_fprintf( stdout, "\n %s\n", p_parser->psz_longname );
1453         }
1454         if( p_parser->psz_help )
1455         {
1456             if( b_color )
1457                 utf8_fprintf( stdout, CYAN" %s\n"GRAY, p_parser->psz_help );
1458             else
1459                 utf8_fprintf( stdout, " %s\n", p_parser->psz_help );
1460         }
1461
1462         /* Print module options */
1463         for( p_item = p_parser->p_config;
1464              p_item < p_end;
1465              p_item++ )
1466         {
1467             char *psz_text, *psz_spaces = psz_spaces_text;
1468             const char *psz_bra = NULL, *psz_type = NULL, *psz_ket = NULL;
1469             const char *psz_suf = "", *psz_prefix = NULL;
1470             signed int i;
1471             size_t i_cur_width;
1472
1473             /* Skip removed options */
1474             if( p_item->b_removed )
1475             {
1476                 continue;
1477             }
1478             /* Skip advanced options if requested */
1479             if( p_item->b_advanced && !b_advanced )
1480             {
1481                 b_has_advanced = true;
1482                 continue;
1483             }
1484
1485             switch( p_item->i_type )
1486             {
1487             case CONFIG_HINT_CATEGORY:
1488             case CONFIG_HINT_USAGE:
1489                 if( !strcmp( "main", p_parser->psz_object_name ) )
1490                 {
1491                     if( b_color )
1492                         utf8_fprintf( stdout, GREEN "\n %s\n" GRAY,
1493                                       p_item->psz_text );
1494                     else
1495                         utf8_fprintf( stdout, "\n %s\n", p_item->psz_text );
1496                 }
1497                 if( b_description && p_item->psz_longtext )
1498                 {
1499                     if( b_color )
1500                         utf8_fprintf( stdout, CYAN " %s\n" GRAY,
1501                                       p_item->psz_longtext );
1502                     else
1503                         utf8_fprintf( stdout, " %s\n", p_item->psz_longtext );
1504                 }
1505                 break;
1506
1507             case CONFIG_HINT_SUBCATEGORY:
1508                 if( strcmp( "main", p_parser->psz_object_name ) )
1509                 break;
1510             case CONFIG_SECTION:
1511                 if( b_color )
1512                 {
1513                     utf8_fprintf( stdout, RED"   %s:\n"GRAY,
1514                                   p_item->psz_text );
1515                     if( b_description && p_item->psz_longtext )
1516                         utf8_fprintf( stdout, MAGENTA"   %s\n"GRAY,
1517                                       p_item->psz_longtext );
1518                 }
1519                 else
1520                 {
1521                     utf8_fprintf( stdout, "   %s:\n", p_item->psz_text );
1522                     if( b_description && p_item->psz_longtext )
1523                         utf8_fprintf( stdout, "   %s\n", p_item->psz_longtext );
1524                 }
1525                 break;
1526
1527             case CONFIG_ITEM_STRING:
1528             case CONFIG_ITEM_FILE:
1529             case CONFIG_ITEM_DIRECTORY:
1530             case CONFIG_ITEM_MODULE: /* We could also have "=<" here */
1531             case CONFIG_ITEM_MODULE_CAT:
1532             case CONFIG_ITEM_MODULE_LIST:
1533             case CONFIG_ITEM_MODULE_LIST_CAT:
1534             case CONFIG_ITEM_FONT:
1535             case CONFIG_ITEM_PASSWORD:
1536                 psz_bra = OPTION_VALUE_SEP "<";
1537                 psz_type = _("string");
1538                 psz_ket = ">";
1539
1540                 if( p_item->ppsz_list )
1541                 {
1542                     psz_bra = OPTION_VALUE_SEP "{";
1543                     psz_type = psz_buffer;
1544                     psz_buffer[0] = '\0';
1545                     for( i = 0; p_item->ppsz_list[i]; i++ )
1546                     {
1547                         if( i ) strcat( psz_buffer, "," );
1548                         strcat( psz_buffer, p_item->ppsz_list[i] );
1549                     }
1550                     psz_ket = "}";
1551                 }
1552                 break;
1553             case CONFIG_ITEM_INTEGER:
1554             case CONFIG_ITEM_KEY: /* FIXME: do something a bit more clever */
1555                 psz_bra = OPTION_VALUE_SEP "<";
1556                 psz_type = _("integer");
1557                 psz_ket = ">";
1558
1559                 if( p_item->min.i || p_item->max.i )
1560                 {
1561                     sprintf( psz_buffer, "%s [%i .. %i]", psz_type,
1562                              p_item->min.i, p_item->max.i );
1563                     psz_type = psz_buffer;
1564                 }
1565
1566                 if( p_item->i_list )
1567                 {
1568                     psz_bra = OPTION_VALUE_SEP "{";
1569                     psz_type = psz_buffer;
1570                     psz_buffer[0] = '\0';
1571                     for( i = 0; p_item->ppsz_list_text[i]; i++ )
1572                     {
1573                         if( i ) strcat( psz_buffer, ", " );
1574                         sprintf( psz_buffer + strlen(psz_buffer), "%i (%s)",
1575                                  p_item->pi_list[i],
1576                                  p_item->ppsz_list_text[i] );
1577                     }
1578                     psz_ket = "}";
1579                 }
1580                 break;
1581             case CONFIG_ITEM_FLOAT:
1582                 psz_bra = OPTION_VALUE_SEP "<";
1583                 psz_type = _("float");
1584                 psz_ket = ">";
1585                 if( p_item->min.f || p_item->max.f )
1586                 {
1587                     sprintf( psz_buffer, "%s [%f .. %f]", psz_type,
1588                              p_item->min.f, p_item->max.f );
1589                     psz_type = psz_buffer;
1590                 }
1591                 break;
1592             case CONFIG_ITEM_BOOL:
1593                 psz_bra = ""; psz_type = ""; psz_ket = "";
1594                 if( !b_help_module )
1595                 {
1596                     psz_suf = p_item->value.i ? _(" (default enabled)") :
1597                                                 _(" (default disabled)");
1598                 }
1599                 break;
1600             }
1601
1602             if( !psz_type )
1603             {
1604                 continue;
1605             }
1606
1607             /* Add short option if any */
1608             if( p_item->i_short )
1609             {
1610                 sprintf( psz_short, "-%c,", p_item->i_short );
1611             }
1612             else
1613             {
1614                 strcpy( psz_short, "   " );
1615             }
1616
1617             i = PADDING_SPACES - strlen( p_item->psz_name )
1618                  - strlen( psz_bra ) - strlen( psz_type )
1619                  - strlen( psz_ket ) - 1;
1620
1621             if( p_item->i_type == CONFIG_ITEM_BOOL && !b_help_module )
1622             {
1623                 psz_prefix =  ", --no-";
1624                 i -= strlen( p_item->psz_name ) + strlen( psz_prefix );
1625             }
1626
1627             if( i < 0 )
1628             {
1629                 psz_spaces[0] = '\n';
1630                 i = 0;
1631             }
1632             else
1633             {
1634                 psz_spaces[i] = '\0';
1635             }
1636
1637             if( p_item->i_type == CONFIG_ITEM_BOOL && !b_help_module )
1638             {
1639                 utf8_fprintf( stdout, psz_format_bool, psz_short, 
1640                               p_item->psz_name, psz_prefix, p_item->psz_name,
1641                               psz_bra, psz_type, psz_ket, psz_spaces );
1642             }
1643             else
1644             {
1645                 utf8_fprintf( stdout, psz_format, psz_short, p_item->psz_name,
1646                          "", "", psz_bra, psz_type, psz_ket, psz_spaces );
1647             }
1648
1649             psz_spaces[i] = ' ';
1650
1651             /* We wrap the rest of the output */
1652             sprintf( psz_buffer, "%s%s", p_item->psz_text, psz_suf );
1653             b_description_hack = b_description;
1654
1655  description:
1656             psz_text = psz_buffer;
1657             i_cur_width = b_description && !b_description_hack
1658                           ? i_width_description
1659                           : i_width;
1660             while( *psz_text )
1661             {
1662                 char *psz_parser, *psz_word;
1663                 size_t i_end = strlen( psz_text );
1664
1665                 /* If the remaining text fits in a line, print it. */
1666                 if( i_end <= i_cur_width )
1667                 {
1668                     if( b_color )
1669                     {
1670                         if( !b_description || b_description_hack )
1671                             utf8_fprintf( stdout, BLUE"%s\n"GRAY, psz_text );
1672                         else
1673                             utf8_fprintf( stdout, "%s\n", psz_text );
1674                     }
1675                     else
1676                     {
1677                         utf8_fprintf( stdout, "%s\n", psz_text );
1678                     }
1679                     break;
1680                 }
1681
1682                 /* Otherwise, eat as many words as possible */
1683                 psz_parser = psz_text;
1684                 do
1685                 {
1686                     psz_word = psz_parser;
1687                     psz_parser = strchr( psz_word, ' ' );
1688                     /* If no space was found, we reached the end of the text
1689                      * block; otherwise, we skip the space we just found. */
1690                     psz_parser = psz_parser ? psz_parser + 1
1691                                             : psz_text + i_end;
1692
1693                 } while( (size_t)(psz_parser - psz_text) <= i_cur_width );
1694
1695                 /* We cut a word in one of these cases:
1696                  *  - it's the only word in the line and it's too long.
1697                  *  - we used less than 80% of the width and the word we are
1698                  *    going to wrap is longer than 40% of the width, and even
1699                  *    if the word would have fit in the next line. */
1700                 if( psz_word == psz_text
1701              || ( (size_t)(psz_word - psz_text) < 80 * i_cur_width / 100
1702              && (size_t)(psz_parser - psz_word) > 40 * i_cur_width / 100 ) )
1703                 {
1704                     char c = psz_text[i_cur_width];
1705                     psz_text[i_cur_width] = '\0';
1706                     if( b_color )
1707                     {
1708                         if( !b_description || b_description_hack )
1709                             utf8_fprintf( stdout, BLUE"%s\n%s"GRAY,
1710                                           psz_text, psz_spaces );
1711                         else
1712                             utf8_fprintf( stdout, "%s\n%s",
1713                                           psz_text, psz_spaces );
1714                     }
1715                     else
1716                     {
1717                         utf8_fprintf( stdout, "%s\n%s", psz_text, psz_spaces );
1718                     }
1719                     psz_text += i_cur_width;
1720                     psz_text[0] = c;
1721                 }
1722                 else
1723                 {
1724                     psz_word[-1] = '\0';
1725                     if( b_color )
1726                     {
1727                         if( !b_description || b_description_hack )
1728                             utf8_fprintf( stdout, BLUE"%s\n%s"GRAY,
1729                                           psz_text, psz_spaces );
1730                         else
1731                             utf8_fprintf( stdout, "%s\n%s",
1732                                           psz_text, psz_spaces );
1733                     }
1734                     else
1735                     {
1736                         utf8_fprintf( stdout, "%s\n%s", psz_text, psz_spaces );
1737                     }
1738                     psz_text = psz_word;
1739                 }
1740             }
1741
1742             if( b_description_hack && p_item->psz_longtext )
1743             {
1744                 sprintf( psz_buffer, "%s%s", p_item->psz_longtext, psz_suf );
1745                 b_description_hack = false;
1746                 psz_spaces = psz_spaces_longtext;
1747                 utf8_fprintf( stdout, "%s", psz_spaces );
1748                 goto description;
1749             }
1750         }
1751     }
1752
1753     if( b_has_advanced ) 
1754     {
1755         if( b_color )
1756             utf8_fprintf( stdout, "\n" WHITE "%s" GRAY " %s\n", _( "Note:" ),
1757            _( "add --advanced to your command line to see advanced options."));
1758         else
1759             utf8_fprintf( stdout, "\n %s %s\n", _( "Note:" ),
1760            _( "add --advanced to your command line to see advanced options."));
1761     }
1762
1763     /* Release the module list */
1764     vlc_list_release( p_list );
1765 }
1766
1767 /*****************************************************************************
1768  * ListModules: list the available modules with their description
1769  *****************************************************************************
1770  * Print a list of all available modules (builtins and plugins) and a short
1771  * description for each one.
1772  *****************************************************************************/
1773 static void ListModules( libvlc_int_t *p_this, bool b_verbose )
1774 {
1775     vlc_list_t *p_list = NULL;
1776     module_t *p_parser = NULL;
1777     char psz_spaces[22];
1778     int i_index;
1779
1780     bool b_color = config_GetInt( p_this, "color" ) > 0;
1781
1782     memset( psz_spaces, ' ', 22 );
1783
1784 #ifdef WIN32
1785     ShowConsole( true );
1786 #endif
1787
1788     /* List all modules */
1789     p_list = vlc_list_find( p_this, VLC_OBJECT_MODULE, FIND_ANYWHERE );
1790
1791     /* Enumerate each module */
1792     for( i_index = 0; i_index < p_list->i_count; i_index++ )
1793     {
1794         int i;
1795
1796         p_parser = (module_t *)p_list->p_values[i_index].p_object ;
1797
1798         /* Nasty hack, but right now I'm too tired to think about a nice
1799          * solution */
1800         i = 22 - strlen( p_parser->psz_object_name ) - 1;
1801         if( i < 0 ) i = 0;
1802         psz_spaces[i] = 0;
1803
1804         if( b_color )
1805             utf8_fprintf( stdout, GREEN"  %s%s "WHITE"%s\n"GRAY,
1806                           p_parser->psz_object_name,
1807                           psz_spaces,
1808                           p_parser->psz_longname );
1809         else
1810             utf8_fprintf( stdout, "  %s%s %s\n",
1811                           p_parser->psz_object_name,
1812                           psz_spaces, p_parser->psz_longname );
1813
1814         if( b_verbose )
1815         {
1816             const char *const *pp_shortcut = p_parser->pp_shortcuts;
1817             while( *pp_shortcut )
1818             {
1819                 if( strcmp( *pp_shortcut, p_parser->psz_object_name ) )
1820                 {
1821                     if( b_color )
1822                         utf8_fprintf( stdout, CYAN"   s %s\n"GRAY,
1823                                       *pp_shortcut );
1824                     else
1825                         utf8_fprintf( stdout, "   s %s\n",
1826                                       *pp_shortcut );
1827                 }
1828                 pp_shortcut++;
1829             }
1830             if( p_parser->psz_capability )
1831             {
1832                 if( b_color )
1833                     utf8_fprintf( stdout, MAGENTA"   c %s (%d)\n"GRAY,
1834                                   p_parser->psz_capability,
1835                                   p_parser->i_score );
1836                 else
1837                     utf8_fprintf( stdout, "   c %s (%d)\n",
1838                                   p_parser->psz_capability,
1839                                   p_parser->i_score );
1840             }
1841         }
1842
1843         psz_spaces[i] = ' ';
1844     }
1845
1846     vlc_list_release( p_list );
1847
1848 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1849     PauseConsole();
1850 #endif
1851 }
1852
1853 /*****************************************************************************
1854  * Version: print complete program version
1855  *****************************************************************************
1856  * Print complete program version and build number.
1857  *****************************************************************************/
1858 static void Version( void )
1859 {
1860 #ifdef WIN32
1861     ShowConsole( true );
1862 #endif
1863
1864     utf8_fprintf( stdout, _("VLC version %s\n"), VLC_Version() );
1865     utf8_fprintf( stdout, _("Compiled by %s@%s.%s\n"),
1866              VLC_CompileBy(), VLC_CompileHost(), VLC_CompileDomain() );
1867     utf8_fprintf( stdout, _("Compiler: %s\n"), VLC_Compiler() );
1868     if( strcmp( VLC_Changeset(), "exported" ) )
1869         utf8_fprintf( stdout, _("Based upon Git commit [%s]\n"),
1870                  VLC_Changeset() );
1871     utf8_fprintf( stdout, LICENSE_MSG );
1872
1873 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1874     PauseConsole();
1875 #endif
1876 }
1877
1878 /*****************************************************************************
1879  * ShowConsole: On Win32, create an output console for debug messages
1880  *****************************************************************************
1881  * This function is useful only on Win32.
1882  *****************************************************************************/
1883 #ifdef WIN32 /*  */
1884 static void ShowConsole( bool b_dofile )
1885 {
1886 #   ifndef UNDER_CE
1887     FILE *f_help = NULL;
1888
1889     if( getenv( "PWD" ) && getenv( "PS1" ) ) return; /* cygwin shell */
1890
1891     AllocConsole();
1892     /* Use the ANSI code page (e.g. Windows-1252) as expected by the LibVLC
1893      * Unicode/locale subsystem. By default, we have the obsolecent OEM code
1894      * page (e.g. CP437 or CP850). */
1895     SetConsoleOutputCP (GetACP ());
1896     SetConsoleTitle ("VLC media player version "PACKAGE_VERSION);
1897
1898     freopen( "CONOUT$", "w", stderr );
1899     freopen( "CONIN$", "r", stdin );
1900
1901     if( b_dofile && (f_help = fopen( "vlc-help.txt", "wt" )) )
1902     {
1903         fclose( f_help );
1904         freopen( "vlc-help.txt", "wt", stdout );
1905         utf8_fprintf( stderr, _("\nDumped content to vlc-help.txt file.\n") );
1906     }
1907     else freopen( "CONOUT$", "w", stdout );
1908
1909 #   endif
1910 }
1911 #endif
1912
1913 /*****************************************************************************
1914  * PauseConsole: On Win32, wait for a key press before closing the console
1915  *****************************************************************************
1916  * This function is useful only on Win32.
1917  *****************************************************************************/
1918 #ifdef WIN32 /*  */
1919 static void PauseConsole( void )
1920 {
1921 #   ifndef UNDER_CE
1922
1923     if( getenv( "PWD" ) && getenv( "PS1" ) ) return; /* cygwin shell */
1924
1925     utf8_fprintf( stderr, _("\nPress the RETURN key to continue...\n") );
1926     getchar();
1927     fclose( stdout );
1928
1929 #   endif
1930 }
1931 #endif
1932
1933 /*****************************************************************************
1934  * ConsoleWidth: Return the console width in characters
1935  *****************************************************************************
1936  * We use the stty shell command to get the console width; if this fails or
1937  * if the width is less than 80, we default to 80.
1938  *****************************************************************************/
1939 static int ConsoleWidth( void )
1940 {
1941     unsigned i_width = 80;
1942
1943 #ifndef WIN32
1944     FILE *file = popen( "stty size 2>/dev/null", "r" );
1945     if (file != NULL)
1946     {
1947         if (fscanf (file, "%*u %u", &i_width) <= 0)
1948             i_width = 80;
1949         pclose( file );
1950     }
1951 #else
1952     CONSOLE_SCREEN_BUFFER_INFO buf;
1953
1954     if (GetConsoleScreenBufferInfo (GetStdHandle (STD_OUTPUT_HANDLE), &buf))
1955         i_width = buf.dwSize.X;
1956 #endif
1957
1958     return i_width;
1959 }
1960
1961 static int VerboseCallback( vlc_object_t *p_this, const char *psz_variable,
1962                      vlc_value_t old_val, vlc_value_t new_val, void *param)
1963 {
1964     libvlc_int_t *p_libvlc = (libvlc_int_t *)p_this;
1965     (void)psz_variable;
1966     (void)old_val;
1967     (void)param;
1968
1969     if( new_val.i_int >= -1 )
1970     {
1971         libvlc_priv (p_libvlc)->i_verbose = __MIN( new_val.i_int, 2 );
1972     }
1973     return VLC_SUCCESS;
1974 }
1975
1976 /*****************************************************************************
1977  * InitDeviceValues: initialize device values
1978  *****************************************************************************
1979  * This function inits the dvd, vcd and cd-audio values
1980  *****************************************************************************/
1981 static void InitDeviceValues( libvlc_int_t *p_vlc )
1982 {
1983 #ifdef HAVE_HAL
1984     LibHalContext * ctx = NULL;
1985     int i, i_devices;
1986     char **devices = NULL;
1987     char *block_dev = NULL;
1988     dbus_bool_t b_dvd;
1989
1990 #ifdef HAVE_HAL_1
1991     DBusConnection *p_connection = NULL;
1992     DBusError       error;
1993
1994     ctx = libhal_ctx_new();
1995     if( !ctx ) return;
1996     dbus_error_init( &error );
1997     p_connection = dbus_bus_get ( DBUS_BUS_SYSTEM, &error );
1998     if( dbus_error_is_set( &error ) || !p_connection )
1999     {
2000         dbus_error_free( &error );
2001         return;
2002     }
2003     libhal_ctx_set_dbus_connection( ctx, p_connection );
2004     if( libhal_ctx_init( ctx, &error ) )
2005 #else
2006     ctx = hal_initialize( NULL, FALSE );
2007     if( ctx )
2008 #endif
2009
2010     {
2011 #ifdef HAVE_HAL_1
2012         if( ( devices = libhal_get_all_devices( ctx, &i_devices, NULL ) ) )
2013 #else
2014         if( ( devices = hal_get_all_devices( ctx, &i_devices ) ) )
2015 #endif
2016         {
2017             for( i = 0; i < i_devices; i++ )
2018             {
2019 #ifdef HAVE_HAL_1
2020                 if( !libhal_device_property_exists( ctx, devices[i],
2021                                                 "storage.cdrom.dvd", NULL ) )
2022 #else
2023                 if( !hal_device_property_exists( ctx, devices[ i ],
2024                                                 "storage.cdrom.dvd" ) )
2025 #endif
2026                 {
2027                     continue;
2028                 }
2029 #ifdef HAVE_HAL_1
2030                 b_dvd = libhal_device_get_property_bool( ctx, devices[ i ],
2031                                                  "storage.cdrom.dvd", NULL  );
2032                 block_dev = libhal_device_get_property_string( ctx,
2033                                 devices[ i ], "block.device" , NULL );
2034 #else
2035                 b_dvd = hal_device_get_property_bool( ctx, devices[ i ],
2036                                                       "storage.cdrom.dvd" );
2037                 block_dev = hal_device_get_property_string( ctx, devices[ i ],
2038                                                             "block.device" );
2039 #endif
2040                 if( b_dvd )
2041                 {
2042                     config_PutPsz( p_vlc, "dvd", block_dev );
2043                 }
2044
2045                 config_PutPsz( p_vlc, "vcd", block_dev );
2046                 config_PutPsz( p_vlc, "cd-audio", block_dev );
2047 #ifdef HAVE_HAL_1
2048                 libhal_free_string( block_dev );
2049 #else
2050                 hal_free_string( block_dev );
2051 #endif
2052             }
2053 #ifdef HAVE_HAL_1
2054             libhal_free_string_array( devices );
2055 #else
2056             hal_free_string_array( devices );
2057 #endif
2058         }
2059
2060 #ifdef HAVE_HAL_1
2061         libhal_ctx_shutdown( ctx, NULL );
2062         dbus_connection_unref( p_connection );
2063         libhal_ctx_free( ctx );
2064 #else
2065         hal_shutdown( ctx );
2066 #endif
2067     }
2068     else
2069     {
2070         msg_Warn( p_vlc, "Unable to get HAL device properties" );
2071     }
2072 #else
2073     (void)p_vlc;
2074 #endif /* HAVE_HAL */
2075 }