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