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