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