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