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