]> git.sesse.net Git - vlc/blob - src/libvlc.c
9673a5c3583b826bc9420f34e59273b9c29a9591
[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 #ifndef WIN32
107 static bool b_daemon = false;
108 #endif
109
110 /*****************************************************************************
111  * vlc_gc_*.
112  *****************************************************************************/
113 void __vlc_gc_incref( gc_object_t * p_gc )
114 {
115     assert( p_gc->i_gc_refcount > 0 );
116
117     /* FIXME: atomic version needed! */
118     p_gc->i_gc_refcount ++;
119 }
120
121 void __vlc_gc_decref( gc_object_t *p_gc )
122 {
123     assert( p_gc );
124     assert( p_gc->i_gc_refcount > 0 );
125
126     /* FIXME: atomic version needed! */
127     p_gc->i_gc_refcount -- ;
128
129     if( p_gc->i_gc_refcount == 0 )
130     {
131         p_gc->pf_destructor( p_gc );
132         /* Do not use the p_gc pointer from now on ! */
133     }
134 }
135
136 void
137 __vlc_gc_init( gc_object_t * p_gc, void (*pf_destructor)( gc_object_t * ),
138                void * arg)
139 {
140     p_gc->i_gc_refcount = 1;
141     p_gc->pf_destructor = pf_destructor;
142     p_gc->p_destructor_arg = arg;
143 }
144
145 /*****************************************************************************
146  * Local prototypes
147  *****************************************************************************/
148 #if defined( ENABLE_NLS ) && (defined (__APPLE__) || defined (WIN32)) && \
149     ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
150 static void SetLanguage   ( char const * );
151 #endif
152 static inline int LoadMessages (void);
153 static int  GetFilenames  ( libvlc_int_t *, int, const char *[] );
154 static void Help          ( libvlc_int_t *, char const *psz_help_name );
155 static void Usage         ( libvlc_int_t *, char const *psz_module_name );
156 static void ListModules   ( libvlc_int_t *, bool );
157 static void Version       ( void );
158
159 #ifdef WIN32
160 static void ShowConsole   ( bool );
161 static void PauseConsole  ( void );
162 #endif
163 static int  ConsoleWidth  ( void );
164
165 static int  VerboseCallback( vlc_object_t *, char const *,
166                              vlc_value_t, vlc_value_t, void * );
167
168 static void InitDeviceValues( libvlc_int_t * );
169
170 /**
171  * Allocate a libvlc instance, initialize global data if needed
172  * It also initializes the threading system
173  */
174 libvlc_int_t * libvlc_InternalCreate( void )
175 {
176     libvlc_int_t *p_libvlc;
177     libvlc_priv_t *priv;
178     char *psz_env = NULL;
179
180     /* vlc_threads_init *must* be the first internal call! No other call is
181      * allowed before the thread system has been initialized. */
182     if (vlc_threads_init ())
183         return NULL;
184
185     libvlc_global_data_t *p_libvlc_global = vlc_global();
186     /* Now that the thread system is initialized, we don't have much, but
187      * at least we have variables */
188     vlc_mutex_t *lock = var_AcquireMutex( "libvlc" );
189     if( i_instances == 0 )
190     {
191         /* Guess what CPU we have */
192         cpu_flags = CPUCapabilities();
193        /* The module bank will be initialized later */
194         p_libvlc_global->p_module_bank = NULL;
195     }
196
197     /* Allocate a libvlc instance object */
198     p_libvlc = vlc_custom_create( VLC_OBJECT(p_libvlc_global), sizeof (*priv),
199                                   VLC_OBJECT_LIBVLC, "libvlc" );
200     if( p_libvlc != NULL )
201         i_instances++;
202     vlc_mutex_unlock( lock );
203
204     if( p_libvlc == NULL )
205         return NULL;
206
207     priv = libvlc_priv (p_libvlc);
208     priv->p_playlist = NULL;
209     priv->p_interaction = NULL;
210     priv->p_vlm = NULL;
211     p_libvlc->psz_object_name = strdup( "libvlc" );
212
213     /* Initialize message queue */
214     msg_Create( p_libvlc );
215
216     /* Find verbosity from VLC_VERBOSE environment variable */
217     psz_env = getenv( "VLC_VERBOSE" );
218     if( psz_env != NULL )
219         priv->i_verbose = atoi( psz_env );
220     else
221         priv->i_verbose = 3;
222 #if defined( HAVE_ISATTY ) && !defined( WIN32 )
223     priv->b_color = isatty( 2 ); /* 2 is for stderr */
224 #else
225     priv->b_color = false;
226 #endif
227
228     /* Announce who we are - Do it only for first instance ? */
229     msg_Dbg( p_libvlc, "%s", COPYRIGHT_MESSAGE );
230     msg_Dbg( p_libvlc, "libvlc was configured with %s", CONFIGURE_LINE );
231
232     /* Initialize mutexes */
233     vlc_mutex_init( &priv->timer_lock );
234     vlc_mutex_init( &priv->config_lock );
235
236     priv->threads_count = 0;
237     vlc_mutex_init (&priv->threads_lock);
238     vlc_cond_init (NULL, &priv->threads_wait);
239
240     /* Store data for the non-reentrant API */
241     p_static_vlc = p_libvlc;
242
243     return p_libvlc;
244 }
245
246 /**
247  * Initialize a libvlc instance
248  * This function initializes a previously allocated libvlc instance:
249  *  - CPU detection
250  *  - gettext initialization
251  *  - message queue, module bank and playlist initialization
252  *  - configuration and commandline parsing
253  */
254 int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
255                          const char *ppsz_argv[] )
256 {
257     libvlc_global_data_t *p_libvlc_global = vlc_global();
258     libvlc_priv_t *priv = libvlc_priv (p_libvlc);
259     char         p_capabilities[200];
260     char *       p_tmp = NULL;
261     char *       psz_modules = NULL;
262     char *       psz_parser = NULL;
263     char *       psz_control = NULL;
264     bool   b_exit = false;
265     int          i_ret = VLC_EEXIT;
266     playlist_t  *p_playlist = NULL;
267     vlc_value_t  val;
268 #if defined( ENABLE_NLS ) \
269      && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
270 # if defined (WIN32) || defined (__APPLE__)
271     char *       psz_language;
272 #endif
273 #endif
274
275     /* System specific initialization code */
276     system_Init( p_libvlc, &i_argc, ppsz_argv );
277
278     /* Get the executable name (similar to the basename command) */
279     if( i_argc > 0 && ppsz_argv[0][0] )
280     {
281         free( p_libvlc->psz_object_name );
282
283         const char *psz_exe = strrchr( ppsz_argv[0], '/' );
284         if( psz_exe && *(psz_exe + 1) )
285             p_libvlc->psz_object_name = strdup( psz_exe + 1 );
286         else
287             p_libvlc->psz_object_name = strdup( ppsz_argv[0] );
288     }
289
290     /*
291      * Support for gettext
292      */
293     LoadMessages ();
294
295     /* Translate "C" to the language code: "fr", "en_GB", "nl", "ru"... */
296     msg_Dbg( p_libvlc, "translation test: code is \"%s\"", _("C") );
297
298     /* Initialize the module bank and load the configuration of the
299      * main module. We need to do this at this stage to be able to display
300      * a short help if required by the user. (short help == main module
301      * options) */
302     module_InitBank( p_libvlc );
303
304     if( config_LoadCmdLine( p_libvlc, &i_argc, ppsz_argv, true ) )
305     {
306         module_EndBank( p_libvlc );
307         return VLC_EGENERIC;
308     }
309
310     /* Check for short help option */
311     if( config_GetInt( p_libvlc, "help" ) > 0 )
312     {
313         Help( p_libvlc, "help" );
314         b_exit = true;
315         i_ret = VLC_EEXITSUCCESS;
316     }
317     /* Check for version option */
318     else if( config_GetInt( p_libvlc, "version" ) > 0 )
319     {
320         Version();
321         b_exit = true;
322         i_ret = VLC_EEXITSUCCESS;
323     }
324
325     /* Set the config file stuff */
326     priv->psz_configfile = config_GetCustomConfigFile( p_libvlc );
327
328     /* Check for plugins cache options */
329     if( config_GetInt( p_libvlc, "reset-plugins-cache" ) > 0 )
330     {
331         p_libvlc_global->p_module_bank->b_cache_delete = true;
332     }
333
334     /* Will be re-done properly later on */
335     priv->i_verbose = config_GetInt( p_libvlc, "verbose" );
336
337     /* Check for daemon mode */
338 #ifndef WIN32
339     if( config_GetInt( p_libvlc, "daemon" ) > 0 )
340     {
341 #ifdef HAVE_DAEMON
342         char *psz_pidfile = NULL;
343
344         if( daemon( 1, 0) != 0 )
345         {
346             msg_Err( p_libvlc, "Unable to fork vlc to daemon mode" );
347             b_exit = true;
348         }
349         b_daemon = true;
350
351         /* lets check if we need to write the pidfile */
352         psz_pidfile = config_GetPsz( p_libvlc, "pidfile" );
353         if( psz_pidfile != NULL )
354         {
355             FILE *pidfile;
356             pid_t i_pid = getpid ();
357             msg_Dbg( p_libvlc, "PID is %d, writing it to %s",
358                                i_pid, psz_pidfile );
359             pidfile = utf8_fopen( psz_pidfile,"w" );
360             if( pidfile != NULL )
361             {
362                 utf8_fprintf( pidfile, "%d", (int)i_pid );
363                 fclose( pidfile );
364             }
365             else
366             {
367                 msg_Err( p_libvlc, "cannot open pid file for writing: %s (%m)",
368                          psz_pidfile );
369             }
370         }
371         free( psz_pidfile );
372
373 #else
374         pid_t i_pid;
375
376         if( ( i_pid = fork() ) < 0 )
377         {
378             msg_Err( p_libvlc, "unable to fork vlc to daemon mode" );
379             b_exit = true;
380         }
381         else if( i_pid )
382         {
383             /* This is the parent, exit right now */
384             msg_Dbg( p_libvlc, "closing parent process" );
385             b_exit = true;
386             i_ret = VLC_EEXITSUCCESS;
387         }
388         else
389         {
390             /* We are the child */
391             msg_Dbg( p_libvlc, "daemon spawned" );
392             close( STDIN_FILENO );
393             close( STDOUT_FILENO );
394             close( STDERR_FILENO );
395
396             b_daemon = true;
397         }
398 #endif
399     }
400 #endif
401
402     if( b_exit )
403     {
404         module_EndBank( p_libvlc );
405         return i_ret;
406     }
407
408     /* Check for translation config option */
409 #if defined( ENABLE_NLS ) \
410      && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
411 # if defined (WIN32) || defined (__APPLE__)
412     /* This ain't really nice to have to reload the config here but it seems
413      * the only way to do it. */
414
415     if( !config_GetInt( p_libvlc, "ignore-config" ) )
416         config_LoadConfigFile( p_libvlc, "main" );
417     config_LoadCmdLine( p_libvlc, &i_argc, ppsz_argv, true );
418
419     /* Check if the user specified a custom language */
420     psz_language = config_GetPsz( p_libvlc, "language" );
421     if( psz_language && *psz_language && strcmp( psz_language, "auto" ) )
422     {
423         bool b_cache_delete = p_libvlc_global->p_module_bank->b_cache_delete;
424
425         /* Reset the default domain */
426         SetLanguage( psz_language );
427
428         /* Translate "C" to the language code: "fr", "en_GB", "nl", "ru"... */
429         msg_Dbg( p_libvlc, "translation test: code is \"%s\"", _("C") );
430
431         module_EndBank( p_libvlc );
432         module_InitBank( p_libvlc );
433         if( !config_GetInt( p_libvlc, "ignore-config" ) )
434             config_LoadConfigFile( p_libvlc, "main" );
435         config_LoadCmdLine( p_libvlc, &i_argc, ppsz_argv, true );
436         p_libvlc_global->p_module_bank->b_cache_delete = b_cache_delete;
437     }
438     free( psz_language );
439 # endif
440 #endif
441
442     /*
443      * Load the builtins and plugins into the module_bank.
444      * We have to do it before config_Load*() because this also gets the
445      * list of configuration options exported by each module and loads their
446      * default values.
447      */
448     module_LoadBuiltins( p_libvlc );
449     module_LoadPlugins( p_libvlc );
450     if( p_libvlc->b_die )
451     {
452         b_exit = true;
453     }
454
455     msg_Dbg( p_libvlc, "module bank initialized, found %i modules",
456              vlc_internals( p_libvlc_global->p_module_bank )->i_children );
457
458     /* Check for help on modules */
459     if( (p_tmp = config_GetPsz( p_libvlc, "module" )) )
460     {
461         Help( p_libvlc, p_tmp );
462         free( p_tmp );
463         b_exit = true;
464         i_ret = VLC_EEXITSUCCESS;
465     }
466     /* Check for full help option */
467     else if( config_GetInt( p_libvlc, "full-help" ) > 0 )
468     {
469         config_PutInt( p_libvlc, "advanced", 1);
470         config_PutInt( p_libvlc, "help-verbose", 1);
471         Help( p_libvlc, "full-help" );
472         b_exit = true;
473         i_ret = VLC_EEXITSUCCESS;
474     }
475     /* Check for long help option */
476     else if( config_GetInt( p_libvlc, "longhelp" ) > 0 )
477     {
478         Help( p_libvlc, "longhelp" );
479         b_exit = true;
480         i_ret = VLC_EEXITSUCCESS;
481     }
482     /* Check for module list option */
483     else if( config_GetInt( p_libvlc, "list" ) > 0 )
484     {
485         ListModules( p_libvlc, false );
486         b_exit = true;
487         i_ret = VLC_EEXITSUCCESS;
488     }
489     else if( config_GetInt( p_libvlc, "list-verbose" ) > 0 )
490     {
491         ListModules( p_libvlc, true );
492         b_exit = true;
493         i_ret = VLC_EEXITSUCCESS;
494     }
495
496     /* Check for config file options */
497     if( !config_GetInt( p_libvlc, "ignore-config" ) )
498     {
499         if( config_GetInt( p_libvlc, "reset-config" ) > 0 )
500         {
501             config_ResetAll( p_libvlc );
502             config_LoadCmdLine( p_libvlc, &i_argc, ppsz_argv, true );
503             config_SaveConfigFile( p_libvlc, NULL );
504         }
505         if( config_GetInt( p_libvlc, "save-config" ) > 0 )
506         {
507             config_LoadConfigFile( p_libvlc, NULL );
508             config_LoadCmdLine( p_libvlc, &i_argc, ppsz_argv, true );
509             config_SaveConfigFile( p_libvlc, NULL );
510         }
511     }
512
513     if( b_exit )
514     {
515         module_EndBank( p_libvlc );
516         return i_ret;
517     }
518
519     /*
520      * Init device values
521      */
522     InitDeviceValues( p_libvlc );
523
524     /*
525      * Override default configuration with config file settings
526      */
527     if( !config_GetInt( p_libvlc, "ignore-config" ) )
528         config_LoadConfigFile( p_libvlc, NULL );
529
530     /*
531      * Override configuration with command line settings
532      */
533     if( config_LoadCmdLine( p_libvlc, &i_argc, ppsz_argv, false ) )
534     {
535 #ifdef WIN32
536         ShowConsole( false );
537         /* Pause the console because it's destroyed when we exit */
538         fprintf( stderr, "The command line options couldn't be loaded, check "
539                  "that they are valid.\n" );
540         PauseConsole();
541 #endif
542         module_EndBank( p_libvlc );
543         return VLC_EGENERIC;
544     }
545
546     /*
547      * System specific configuration
548      */
549     system_Configure( p_libvlc, &i_argc, ppsz_argv );
550
551 /* FIXME: could be replaced by using Unix sockets */
552 #ifdef HAVE_DBUS
553     dbus_threads_init_default();
554
555     if( config_GetInt( p_libvlc, "one-instance" ) > 0 )
556     {
557         /* Initialise D-Bus interface, check for other instances */
558         DBusConnection  *p_conn = NULL;
559         DBusError       dbus_error;
560
561         dbus_error_init( &dbus_error );
562
563         /* connect to the session bus */
564         p_conn = dbus_bus_get( DBUS_BUS_SESSION, &dbus_error );
565         if( !p_conn )
566         {
567             msg_Err( p_libvlc, "Failed to connect to D-Bus session daemon: %s",
568                     dbus_error.message );
569             dbus_error_free( &dbus_error );
570         }
571         else
572         {
573             /* check if VLC is available on the bus
574              * if not: D-Bus control is not enabled on the other
575              * instance and we can't pass MRLs to it */
576             DBusMessage *p_test_msg = NULL;
577             DBusMessage *p_test_reply = NULL;
578             p_test_msg =  dbus_message_new_method_call(
579                     "org.mpris.vlc", "/",
580                     "org.freedesktop.MediaPlayer", "Identity" );
581             /* block until a reply arrives */
582             p_test_reply = dbus_connection_send_with_reply_and_block(
583                     p_conn, p_test_msg, -1, &dbus_error );
584             dbus_message_unref( p_test_msg );
585             if( p_test_reply == NULL )
586             {
587                 dbus_error_free( &dbus_error );
588                 msg_Dbg( p_libvlc, "No Media Player is running. "
589                         "Continuing normally." );
590             }
591             else
592             {
593                 int i_input;
594                 DBusMessage* p_dbus_msg = NULL;
595                 DBusMessageIter dbus_args;
596                 DBusPendingCall* p_dbus_pending = NULL;
597                 dbus_bool_t b_play;
598
599                 dbus_message_unref( p_test_reply );
600                 msg_Warn( p_libvlc, "Another Media Player is running. Exiting");
601
602                 for( i_input = optind;i_input < i_argc;i_input++ )
603                 {
604                     msg_Dbg( p_libvlc, "Adds %s to the running Media Player",
605                             ppsz_argv[i_input] );
606
607                     p_dbus_msg = dbus_message_new_method_call(
608                             "org.mpris.vlc", "/TrackList",
609                             "org.freedesktop.MediaPlayer", "AddTrack" );
610
611                     if ( NULL == p_dbus_msg )
612                     {
613                         msg_Err( p_libvlc, "D-Bus problem" );
614                         system_End( p_libvlc );
615                         exit( VLC_ETIMEOUT );
616                     }
617
618                     /* append MRLs */
619                     dbus_message_iter_init_append( p_dbus_msg, &dbus_args );
620                     if ( !dbus_message_iter_append_basic( &dbus_args,
621                                 DBUS_TYPE_STRING, &ppsz_argv[i_input] ) )
622                     {
623                         dbus_message_unref( p_dbus_msg );
624                         system_End( p_libvlc );
625                         exit( VLC_ENOMEM );
626                     }
627                     b_play = TRUE;
628                     if( config_GetInt( p_libvlc, "playlist-enqueue" ) > 0 )
629                         b_play = FALSE;
630                     if ( !dbus_message_iter_append_basic( &dbus_args,
631                                 DBUS_TYPE_BOOLEAN, &b_play ) )
632                     {
633                         dbus_message_unref( p_dbus_msg );
634                         system_End( p_libvlc );
635                         exit( VLC_ENOMEM );
636                     }
637
638                     /* send message and get a handle for a reply */
639                     if ( !dbus_connection_send_with_reply ( p_conn,
640                                 p_dbus_msg, &p_dbus_pending, -1 ) )
641                     {
642                         msg_Err( p_libvlc, "D-Bus problem" );
643                         dbus_message_unref( p_dbus_msg );
644                         system_End( p_libvlc );
645                         exit( VLC_ETIMEOUT );
646                     }
647
648                     if ( NULL == p_dbus_pending )
649                     {
650                         msg_Err( p_libvlc, "D-Bus problem" );
651                         dbus_message_unref( p_dbus_msg );
652                         system_End( p_libvlc );
653                         exit( VLC_ETIMEOUT );
654                     }
655                     dbus_connection_flush( p_conn );
656                     dbus_message_unref( p_dbus_msg );
657                     /* block until we receive a reply */
658                     dbus_pending_call_block( p_dbus_pending );
659                     dbus_pending_call_unref( p_dbus_pending );
660                 } /* processes all command line MRLs */
661
662                 /* bye bye */
663                 system_End( p_libvlc );
664                 exit( VLC_SUCCESS );
665             }
666         }
667         /* we unreference the connection when we've finished with it */
668         if( p_conn ) dbus_connection_unref( p_conn );
669     }
670 #endif
671
672     /*
673      * Message queue options
674      */
675
676     var_Create( p_libvlc, "verbose", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
677     if( config_GetInt( p_libvlc, "quiet" ) > 0 )
678     {
679         val.i_int = -1;
680         var_Set( p_libvlc, "verbose", val );
681     }
682     var_AddCallback( p_libvlc, "verbose", VerboseCallback, NULL );
683     var_Change( p_libvlc, "verbose", VLC_VAR_TRIGGER_CALLBACKS, NULL, NULL );
684
685     if( priv->b_color )
686         priv->b_color = config_GetInt( p_libvlc, "color" ) > 0;
687
688     /*
689      * Output messages that may still be in the queue
690      */
691     msg_Flush( p_libvlc );
692
693     if( !config_GetInt( p_libvlc, "fpu" ) )
694         cpu_flags &= ~CPU_CAPABILITY_FPU;
695
696 #if defined( __i386__ ) || defined( __x86_64__ )
697     if( !config_GetInt( p_libvlc, "mmx" ) )
698         cpu_flags &= ~CPU_CAPABILITY_MMX;
699     if( !config_GetInt( p_libvlc, "3dn" ) )
700         cpu_flags &= ~CPU_CAPABILITY_3DNOW;
701     if( !config_GetInt( p_libvlc, "mmxext" ) )
702         cpu_flags &= ~CPU_CAPABILITY_MMXEXT;
703     if( !config_GetInt( p_libvlc, "sse" ) )
704         cpu_flags &= ~CPU_CAPABILITY_SSE;
705     if( !config_GetInt( p_libvlc, "sse2" ) )
706         cpu_flags &= ~CPU_CAPABILITY_SSE2;
707 #endif
708 #if defined( __powerpc__ ) || defined( __ppc__ ) || defined( __ppc64__ )
709     if( !config_GetInt( p_libvlc, "altivec" ) )
710         cpu_flags &= ~CPU_CAPABILITY_ALTIVEC;
711 #endif
712
713 #define PRINT_CAPABILITY( capability, string )                              \
714     if( vlc_CPU() & capability )                                            \
715     {                                                                       \
716         strncat( p_capabilities, string " ",                                \
717                  sizeof(p_capabilities) - strlen(p_capabilities) );         \
718         p_capabilities[sizeof(p_capabilities) - 1] = '\0';                  \
719     }
720
721     p_capabilities[0] = '\0';
722     PRINT_CAPABILITY( CPU_CAPABILITY_486, "486" );
723     PRINT_CAPABILITY( CPU_CAPABILITY_586, "586" );
724     PRINT_CAPABILITY( CPU_CAPABILITY_PPRO, "Pentium Pro" );
725     PRINT_CAPABILITY( CPU_CAPABILITY_MMX, "MMX" );
726     PRINT_CAPABILITY( CPU_CAPABILITY_3DNOW, "3DNow!" );
727     PRINT_CAPABILITY( CPU_CAPABILITY_MMXEXT, "MMXEXT" );
728     PRINT_CAPABILITY( CPU_CAPABILITY_SSE, "SSE" );
729     PRINT_CAPABILITY( CPU_CAPABILITY_SSE2, "SSE2" );
730     PRINT_CAPABILITY( CPU_CAPABILITY_ALTIVEC, "AltiVec" );
731     PRINT_CAPABILITY( CPU_CAPABILITY_FPU, "FPU" );
732     msg_Dbg( p_libvlc, "CPU has capabilities %s", p_capabilities );
733
734     /*
735      * Choose the best memcpy module
736      */
737     priv->p_memcpy_module = module_Need( p_libvlc, "memcpy", "$memcpy", 0 );
738
739     priv->b_stats = config_GetInt( p_libvlc, "stats" ) > 0;
740     priv->i_timers = 0;
741     priv->pp_timers = NULL;
742
743     /* Init stats */
744     p_libvlc->p_stats = (global_stats_t *)malloc( sizeof( global_stats_t ) );
745     if( !p_libvlc->p_stats )
746     {
747         vlc_object_release( p_libvlc );
748         return VLC_ENOMEM;
749     }
750     vlc_mutex_init( &p_libvlc->p_stats->lock );
751     priv->p_stats_computer = NULL;
752
753     /* Init the array that holds every input item */
754     ARRAY_INIT( priv->input_items );
755     priv->i_last_input_id = 0;
756
757     /*
758      * Initialize hotkey handling
759      */
760     var_Create( p_libvlc, "key-pressed", VLC_VAR_INTEGER );
761     var_Create( p_libvlc, "key-action", VLC_VAR_INTEGER );
762     p_libvlc->p_hotkeys = malloc( libvlc_hotkeys_size );
763     /* Do a copy (we don't need to modify the strings) */
764     memcpy( p_libvlc->p_hotkeys, libvlc_hotkeys, libvlc_hotkeys_size );
765     var_AddCallback( p_libvlc, "key-pressed", vlc_key_to_action,
766                      p_libvlc->p_hotkeys );
767
768     /* Initialize interaction */
769     priv->p_interaction = interaction_Init( p_libvlc );
770
771     /* Initialize playlist and get commandline files */
772     playlist_ThreadCreate( p_libvlc );
773     if( !priv->p_playlist )
774     {
775         msg_Err( p_libvlc, "playlist initialization failed" );
776         if( priv->p_memcpy_module != NULL )
777         {
778             module_Unneed( p_libvlc, priv->p_memcpy_module );
779         }
780         module_EndBank( p_libvlc );
781         return VLC_EGENERIC;
782     }
783     p_playlist = priv->p_playlist;
784
785     psz_modules = config_GetPsz( p_playlist, "services-discovery" );
786     if( psz_modules && *psz_modules )
787     {
788         /* Add service discovery modules */
789         playlist_ServicesDiscoveryAdd( p_playlist, psz_modules );
790     }
791     free( psz_modules );
792
793 #ifdef ENABLE_VLM
794     /* Initialize VLM if vlm-conf is specified */
795     psz_parser = config_GetPsz( p_libvlc, "vlm-conf" );
796     if( psz_parser && *psz_parser )
797     {
798         priv->p_vlm = vlm_New( p_libvlc );
799         if( !priv->p_vlm )
800             msg_Err( p_libvlc, "VLM initialization failed" );
801     }
802     free( psz_parser );
803 #endif
804
805     /*
806      * Load background interfaces
807      */
808     psz_modules = config_GetPsz( p_libvlc, "extraintf" );
809     psz_control = config_GetPsz( p_libvlc, "control" );
810
811     if( psz_modules && *psz_modules && psz_control && *psz_control )
812     {
813         psz_modules = (char *)realloc( psz_modules, strlen( psz_modules ) +
814                                                     strlen( psz_control ) + 1 );
815         sprintf( psz_modules, "%s:%s", psz_modules, psz_control );
816     }
817     else if( psz_control && *psz_control )
818     {
819         free( psz_modules );
820         psz_modules = strdup( psz_control );
821     }
822
823     psz_parser = psz_modules;
824     while ( psz_parser && *psz_parser )
825     {
826         char *psz_module, *psz_temp;
827         psz_module = psz_parser;
828         psz_parser = strchr( psz_module, ':' );
829         if ( psz_parser )
830         {
831             *psz_parser = '\0';
832             psz_parser++;
833         }
834         psz_temp = (char *)malloc( strlen(psz_module) + sizeof(",none") );
835         if( psz_temp )
836         {
837             sprintf( psz_temp, "%s,none", psz_module );
838             libvlc_InternalAddIntf( p_libvlc, psz_temp );
839             free( psz_temp );
840         }
841     }
842     free( psz_modules );
843     free( psz_control );
844
845     /*
846      * Always load the hotkeys interface if it exists
847      */
848     libvlc_InternalAddIntf( p_libvlc, "hotkeys,none" );
849
850 #ifdef HAVE_DBUS
851     /* loads dbus control interface if in one-instance mode
852      * we do it only when playlist exists, because dbus module needs it */
853     if( config_GetInt( p_libvlc, "one-instance" ) > 0 )
854         libvlc_InternalAddIntf( p_libvlc, "dbus,none" );
855
856     /* Prevents the power management daemon from suspending the system
857      * when VLC is active */
858     if( config_GetInt( p_libvlc, "inhibit" ) > 0 )
859         libvlc_InternalAddIntf( p_libvlc, "inhibit,none" );
860 #endif
861
862     /*
863      * If needed, load the Xscreensaver interface
864      * Currently, only for X
865      */
866 #ifdef HAVE_X11_XLIB_H
867     if( config_GetInt( p_libvlc, "disable-screensaver" ) )
868     {
869         libvlc_InternalAddIntf( p_libvlc, "screensaver,none" );
870     }
871 #endif
872
873     if( config_GetInt( p_libvlc, "file-logging" ) > 0 )
874     {
875         libvlc_InternalAddIntf( p_libvlc, "logger,none" );
876     }
877 #ifdef HAVE_SYSLOG_H
878     if( config_GetInt( p_libvlc, "syslog" ) > 0 )
879     {
880         char *logmode = var_CreateGetString( p_libvlc, "logmode" );
881         var_SetString( p_libvlc, "logmode", "syslog" );
882         libvlc_InternalAddIntf( p_libvlc, "logger,none" );
883
884         if( logmode )
885         {
886             var_SetString( p_libvlc, "logmode", logmode );
887             free( logmode );
888         }
889         else
890             var_Destroy( p_libvlc, "logmode" );
891     }
892 #endif
893
894     if( config_GetInt( p_libvlc, "show-intf" ) > 0 )
895     {
896         libvlc_InternalAddIntf( p_libvlc, "showintf,none" );
897     }
898
899     if( config_GetInt( p_libvlc, "network-synchronisation") > 0 )
900     {
901         libvlc_InternalAddIntf( p_libvlc, "netsync,none" );
902     }
903
904 #ifdef WIN32
905     if( config_GetInt( p_libvlc, "prefer-system-codecs") > 0 )
906     {
907         char *psz_codecs = config_GetPsz( p_playlist, "codec" );
908         if( psz_codecs )
909         {
910             char *psz_morecodecs;
911             if( asprintf(&psz_morecodecs, "%s,dmo,quicktime", psz_codecs) != -1 )
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 }