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