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