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