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