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