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