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