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