]> git.sesse.net Git - vlc/blob - src/libvlc-common.c
FFmpeg use --cross-compile option
[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 *, bool );
118 static void Version       ( void );
119
120 #ifdef WIN32
121 static void ShowConsole   ( bool );
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 = 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 = 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     bool   b_exit = 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, 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 = 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 = 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 = 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 = true;
331         }
332         p_libvlc_global->b_daemon = 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 = 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 = 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 = 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
398     if( !config_GetInt( p_libvlc, "ignore-config" ) )
399         config_LoadConfigFile( p_libvlc, "main" );
400     config_LoadCmdLine( p_libvlc, &i_argc, ppsz_argv, true );
401
402     /* Check if the user specified a custom language */
403     psz_language = config_GetPsz( p_libvlc, "language" );
404     if( psz_language && *psz_language && strcmp( psz_language, "auto" ) )
405     {
406         bool b_cache_delete = p_libvlc_global->p_module_bank->b_cache_delete;
407
408         /* Reset the default domain */
409         SetLanguage( psz_language );
410
411         /* Translate "C" to the language code: "fr", "en_GB", "nl", "ru"... */
412         msg_Dbg( p_libvlc, "translation test: code is \"%s\"", _("C") );
413
414         module_EndBank( p_libvlc );
415         module_InitBank( p_libvlc );
416         if( !config_GetInt( p_libvlc, "ignore-config" ) )
417             config_LoadConfigFile( p_libvlc, "main" );
418         config_LoadCmdLine( p_libvlc, &i_argc, ppsz_argv, true );
419         p_libvlc_global->p_module_bank->b_cache_delete = b_cache_delete;
420     }
421     free( psz_language );
422 # endif
423 #endif
424
425     /*
426      * Load the builtins and plugins into the module_bank.
427      * We have to do it before config_Load*() because this also gets the
428      * list of configuration options exported by each module and loads their
429      * default values.
430      */
431     module_LoadBuiltins( p_libvlc );
432     module_LoadPlugins( p_libvlc );
433     if( p_libvlc->b_die )
434     {
435         b_exit = true;
436     }
437
438     msg_Dbg( p_libvlc, "module bank initialized, found %i modules",
439              p_libvlc_global->p_module_bank->i_children );
440
441     /* Check for help on modules */
442     if( (p_tmp = config_GetPsz( p_libvlc, "module" )) )
443     {
444         Help( p_libvlc, p_tmp );
445         free( p_tmp );
446         b_exit = true;
447         i_ret = VLC_EEXITSUCCESS;
448     }
449     /* Check for long help option */
450     else if( config_GetInt( p_libvlc, "longhelp" ) > 0 )
451     {
452         Help( p_libvlc, "longhelp" );
453         b_exit = true;
454         i_ret = VLC_EEXITSUCCESS;
455     }
456     /* Check for module list option */
457     else if( config_GetInt( p_libvlc, "list" ) > 0 )
458     {
459         ListModules( p_libvlc, false );
460         b_exit = true;
461         i_ret = VLC_EEXITSUCCESS;
462     }
463     else if( config_GetInt( p_libvlc, "list-verbose" ) > 0 )
464     {
465         ListModules( p_libvlc, true );
466         b_exit = true;
467         i_ret = VLC_EEXITSUCCESS;
468     }
469
470     /* Check for config file options */
471     if( !config_GetInt( p_libvlc, "ignore-config" ) )
472     {
473         if( config_GetInt( p_libvlc, "reset-config" ) > 0 )
474         {
475             config_ResetAll( p_libvlc );
476             config_LoadCmdLine( p_libvlc, &i_argc, ppsz_argv, true );
477             config_SaveConfigFile( p_libvlc, NULL );
478         }
479         if( config_GetInt( p_libvlc, "save-config" ) > 0 )
480         {
481             config_LoadConfigFile( p_libvlc, NULL );
482             config_LoadCmdLine( p_libvlc, &i_argc, ppsz_argv, true );
483             config_SaveConfigFile( p_libvlc, NULL );
484         }
485     }
486
487     if( b_exit )
488     {
489         module_EndBank( p_libvlc );
490         return i_ret;
491     }
492
493     /*
494      * Init device values
495      */
496     InitDeviceValues( p_libvlc );
497
498     /*
499      * Override default configuration with config file settings
500      */
501     if( !config_GetInt( p_libvlc, "ignore-config" ) )
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, false ) )
508     {
509 #ifdef WIN32
510         ShowConsole( 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     /* Initialize VLM if vlm-conf is specified */
780     psz_parser = config_GetPsz( p_libvlc, "vlm-conf" );
781     if( psz_parser && *psz_parser )
782     {
783         p_libvlc->p_vlm = vlm_New( p_libvlc );
784         if( !p_libvlc->p_vlm )
785             msg_Err( p_libvlc, "VLM initialization failed" );
786     }
787     free( psz_parser );
788
789     /*
790      * Load background interfaces
791      */
792     psz_modules = config_GetPsz( p_libvlc, "extraintf" );
793     psz_control = config_GetPsz( p_libvlc, "control" );
794
795     if( psz_modules && *psz_modules && psz_control && *psz_control )
796     {
797         psz_modules = (char *)realloc( psz_modules, strlen( psz_modules ) +
798                                                     strlen( psz_control ) + 1 );
799         sprintf( psz_modules, "%s:%s", psz_modules, psz_control );
800     }
801     else if( psz_control && *psz_control )
802     {
803         free( psz_modules );
804         psz_modules = strdup( psz_control );
805     }
806
807     psz_parser = psz_modules;
808     while ( psz_parser && *psz_parser )
809     {
810         char *psz_module, *psz_temp;
811         psz_module = psz_parser;
812         psz_parser = strchr( psz_module, ':' );
813         if ( psz_parser )
814         {
815             *psz_parser = '\0';
816             psz_parser++;
817         }
818         psz_temp = (char *)malloc( strlen(psz_module) + sizeof(",none") );
819         if( psz_temp )
820         {
821             sprintf( psz_temp, "%s,none", psz_module );
822             VLC_AddIntf( 0, psz_temp, false, false );
823             free( psz_temp );
824         }
825     }
826     free( psz_modules );
827     free( psz_control );
828
829     /*
830      * Always load the hotkeys interface if it exists
831      */
832     VLC_AddIntf( 0, "hotkeys,none", false, false );
833
834 #ifdef HAVE_DBUS_3
835     /* loads dbus control interface if in one-instance mode
836      * we do it only when playlist exists, because dbus module needs it */
837     if( config_GetInt( p_libvlc, "one-instance" ) > 0 )
838         VLC_AddIntf( 0, "dbus,none", false, false );
839
840     /* Prevents the power management daemon to suspend the computer
841      * when VLC is active */
842     if( config_GetInt( p_libvlc, "inhibit" ) > 0 )
843         VLC_AddIntf( 0, "inhibit,none", false, false );
844 #endif
845
846     /*
847      * If needed, load the Xscreensaver interface
848      * Currently, only for X
849      */
850 #ifdef HAVE_X11_XLIB_H
851     if( config_GetInt( p_libvlc, "disable-screensaver" ) )
852     {
853         VLC_AddIntf( 0, "screensaver,none", false, false );
854     }
855 #endif
856
857     if( config_GetInt( p_libvlc, "file-logging" ) > 0 )
858     {
859         VLC_AddIntf( 0, "logger,none", false, false );
860     }
861 #ifdef HAVE_SYSLOG_H
862     if( config_GetInt( p_libvlc, "syslog" ) > 0 )
863     {
864         const char *psz_logmode = "logmode=syslog";
865         libvlc_InternalAddIntf( p_libvlc, "logger,none", false, false,
866                                 1, &psz_logmode );
867     }
868 #endif
869
870     if( config_GetInt( p_libvlc, "show-intf" ) > 0 )
871     {
872         VLC_AddIntf( 0, "showintf,none", false, false );
873     }
874
875     if( config_GetInt( p_libvlc, "network-synchronisation") > 0 )
876     {
877         VLC_AddIntf( 0, "netsync,none", false, false );
878     }
879
880 #ifdef WIN32
881     if( config_GetInt( p_libvlc, "prefer-system-codecs") > 0 )
882     {
883         char *psz_codecs = config_GetPsz( p_playlist, "codec" );
884         if( psz_codecs )
885         {
886             char *psz_morecodecs;
887             asprintf(&psz_morecodecs, "%s,dmo,quicktime", psz_codecs);
888             if( psz_morecodecs )
889             {
890                 config_PutPsz( p_libvlc, "codec", psz_morecodecs);
891                 free( psz_morecodecs );
892             }
893         }
894         else
895             config_PutPsz( p_libvlc, "codec", "dmo,quicktime");
896         free( psz_codecs );
897     }
898 #endif
899
900     /*
901      * FIXME: kludge to use a p_libvlc-local variable for the Mozilla plugin
902      */
903     var_Create( p_libvlc, "drawable", VLC_VAR_INTEGER );
904     var_Create( p_libvlc, "drawable-view-top", VLC_VAR_INTEGER );
905     var_Create( p_libvlc, "drawable-view-left", VLC_VAR_INTEGER );
906     var_Create( p_libvlc, "drawable-view-bottom", VLC_VAR_INTEGER );
907     var_Create( p_libvlc, "drawable-view-right", VLC_VAR_INTEGER );
908     var_Create( p_libvlc, "drawable-clip-top", VLC_VAR_INTEGER );
909     var_Create( p_libvlc, "drawable-clip-left", VLC_VAR_INTEGER );
910     var_Create( p_libvlc, "drawable-clip-bottom", VLC_VAR_INTEGER );
911     var_Create( p_libvlc, "drawable-clip-right", VLC_VAR_INTEGER );
912
913     /* Create volume callback system. */
914     var_Create( p_libvlc, "volume-change", VLC_VAR_BOOL );
915
916     /*
917      * Get input filenames given as commandline arguments
918      */
919     GetFilenames( p_libvlc, i_argc, ppsz_argv );
920
921     /*
922      * Get --open argument
923      */
924     var_Create( p_libvlc, "open", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
925     var_Get( p_libvlc, "open", &val );
926     if ( val.psz_string != NULL && *val.psz_string )
927     {
928         VLC_AddTarget( p_libvlc->i_object_id, val.psz_string, NULL, 0,
929                        PLAYLIST_INSERT, 0 );
930     }
931     free( val.psz_string );
932
933     return VLC_SUCCESS;
934 }
935
936 /**
937  * Cleanup a libvlc instance. The instance is not completely deallocated
938  * \param p_libvlc the instance to clean
939  */
940 int libvlc_InternalCleanup( libvlc_int_t *p_libvlc )
941 {
942     intf_thread_t      * p_intf = NULL;
943     vout_thread_t      * p_vout = NULL;
944     aout_instance_t    * p_aout = NULL;
945     announce_handler_t * p_announce = NULL;
946     sout_instance_t    * p_sout = NULL;
947
948     /* Ask the interfaces to stop and destroy them */
949     msg_Dbg( p_libvlc, "removing all interfaces" );
950     while( (p_intf = vlc_object_find( p_libvlc, VLC_OBJECT_INTF, FIND_CHILD )) )
951     {
952         intf_StopThread( p_intf );
953         vlc_object_detach( p_intf );
954         vlc_object_release( p_intf );
955         intf_Destroy( p_intf );
956         p_intf = NULL;
957     }
958
959     /* Free playlist */
960     msg_Dbg( p_libvlc, "removing playlist" );
961     playlist_ThreadDestroy( p_libvlc->p_playlist );
962
963     /* Free video outputs */
964     msg_Dbg( p_libvlc, "removing all video outputs" );
965     while( (p_vout = vlc_object_find( p_libvlc, VLC_OBJECT_VOUT, FIND_CHILD )) )
966     {
967         vlc_object_detach( p_vout );
968         vlc_object_release( p_vout );
969         vout_Destroy( p_vout );
970     }
971
972     /* Free audio outputs */
973     msg_Dbg( p_libvlc, "removing all audio outputs" );
974     while( (p_aout = vlc_object_find( p_libvlc, VLC_OBJECT_AOUT, FIND_CHILD )) )
975     {
976         vlc_object_detach( (vlc_object_t *)p_aout );
977         vlc_object_release( (vlc_object_t *)p_aout );
978         aout_Delete( p_aout );
979     }
980
981     p_sout = vlc_object_find( p_libvlc, VLC_OBJECT_SOUT, FIND_CHILD );
982     if( p_sout )
983     {
984         msg_Dbg( p_sout, "removing kept stream output" );
985         vlc_object_detach( (vlc_object_t*)p_sout );
986         vlc_object_release( (vlc_object_t*)p_sout );
987         sout_DeleteInstance( p_sout );
988     }
989
990     /* Destroy VLM if created in libvlc_InternalInit */
991     if( p_libvlc->p_vlm )
992     {
993         vlm_Delete( p_libvlc->p_vlm );
994     }
995
996     /* Free interaction */
997     msg_Dbg( p_libvlc, "removing interaction" );
998     vlc_object_release( p_libvlc->p_interaction );
999
1000     stats_TimersDumpAll( p_libvlc );
1001     stats_TimersCleanAll( p_libvlc );
1002
1003     /* Free announce handler(s?) */
1004     while( (p_announce = vlc_object_find( p_libvlc, VLC_OBJECT_ANNOUNCE,
1005                                                  FIND_CHILD ) ) )
1006     {
1007         msg_Dbg( p_libvlc, "removing announce handler" );
1008         vlc_object_detach( p_announce );
1009         vlc_object_release( p_announce );
1010         announce_HandlerDestroy( p_announce );
1011     }
1012
1013     bool b_clean = true;
1014     FOREACH_ARRAY( input_item_t *p_del, p_libvlc->input_items )
1015         msg_Err( p_libvlc, "input item %p has not been deleted properly: refcount %d, name %s",
1016             p_del, p_del->i_gc_refcount, p_del->psz_name ? p_del->psz_name : "(null)" );
1017         b_clean = false;
1018     FOREACH_END();
1019     assert( b_clean );
1020     ARRAY_RESET( p_libvlc->input_items );
1021
1022     msg_Dbg( p_libvlc, "removing stats" );
1023     vlc_mutex_destroy( &p_libvlc->p_stats->lock );
1024     FREENULL( p_libvlc->p_stats );
1025
1026     return VLC_SUCCESS;
1027 }
1028
1029 /**
1030  * Destroy everything.
1031  * This function requests the running threads to finish, waits for their
1032  * termination, and destroys their structure.
1033  * It stops the thread systems: no instance can run after this has run
1034  * \param p_libvlc the instance to destroy
1035  * \param b_release whether we should do a release on the instance
1036  */
1037 int libvlc_InternalDestroy( libvlc_int_t *p_libvlc, bool b_release )
1038 {
1039     if( !p_libvlc )
1040         return VLC_EGENERIC;
1041
1042 #ifndef WIN32
1043     char* psz_pidfile = NULL;
1044
1045     if( config_GetInt( p_libvlc, "daemon" ) > 0 )
1046     {
1047         psz_pidfile = config_GetPsz( p_libvlc, "pidfile" );
1048         if( psz_pidfile != NULL )
1049         {
1050             msg_Dbg( p_libvlc, "removing pid file %s", psz_pidfile );
1051             if( unlink( psz_pidfile ) == -1 )
1052             {
1053                 msg_Dbg( p_libvlc, "removing pid file %s: %m",
1054                         psz_pidfile );
1055             }
1056         }
1057         free( psz_pidfile );
1058     }
1059 #endif
1060
1061     if( p_libvlc->p_memcpy_module )
1062     {
1063         module_Unneed( p_libvlc, p_libvlc->p_memcpy_module );
1064         p_libvlc->p_memcpy_module = NULL;
1065     }
1066
1067     /* Free module bank. It is refcounted, so we call this each time  */
1068     module_EndBank( p_libvlc );
1069
1070     FREENULL( p_libvlc->psz_homedir );
1071     FREENULL( p_libvlc->psz_configdir );
1072     FREENULL( p_libvlc->psz_datadir );
1073     FREENULL( p_libvlc->psz_cachedir );
1074     FREENULL( p_libvlc->psz_configfile );
1075     var_DelCallback( p_libvlc, "key-pressed", vlc_key_to_action,
1076                      p_libvlc->p_hotkeys );
1077     FREENULL( p_libvlc->p_hotkeys );
1078
1079     vlc_mutex_t *lock = var_AcquireMutex( "libvlc" );
1080     i_instances--;
1081
1082     if( i_instances == 0 )
1083     {
1084         /* System specific cleaning code */
1085         system_End( p_libvlc );
1086     }
1087     vlc_mutex_unlock( lock );
1088
1089     msg_Flush( p_libvlc );
1090     msg_Destroy( p_libvlc );
1091
1092     /* Destroy mutexes */
1093     vlc_mutex_destroy( &p_libvlc->config_lock );
1094     vlc_mutex_destroy( &p_libvlc->timer_lock );
1095
1096     if( b_release ) vlc_object_release( p_libvlc );
1097     vlc_object_release( p_libvlc );
1098     p_libvlc = NULL;
1099
1100     /* Stop thread system: last one out please shut the door!
1101      * The number of initializations of the thread system is counted, we
1102      * can call this each time */
1103     vlc_threads_end( p_libvlc_global );
1104
1105     return VLC_SUCCESS;
1106 }
1107
1108 /**
1109  * Add an interface plugin and run it
1110  */
1111 int libvlc_InternalAddIntf( libvlc_int_t *p_libvlc,
1112                             char const *psz_module,
1113                             bool b_block, bool b_play,
1114                             int i_options, const char *const *ppsz_options )
1115 {
1116     int i_err;
1117     intf_thread_t *p_intf = NULL;
1118
1119     if( !p_libvlc )
1120         return VLC_EGENERIC;
1121
1122     if( !psz_module ) /* requesting the default interface */
1123     {
1124         char *psz_interface = config_GetPsz( p_libvlc, "intf" );
1125         if( !psz_interface || !*psz_interface ) /* "intf" has not been set */
1126             msg_Info( p_libvlc, _("Running vlc with the default interface. Use 'cvlc' to use vlc without interface.") );
1127         free( psz_interface );
1128     }
1129
1130 #ifndef WIN32
1131     if( p_libvlc_global->b_daemon && b_block && !psz_module )
1132     {
1133         /* Daemon mode hack.
1134          * We prefer the dummy interface if none is specified. */
1135         char *psz_interface = config_GetPsz( p_libvlc, "intf" );
1136         if( !psz_interface || !*psz_interface ) psz_module = "dummy";
1137         free( psz_interface );
1138     }
1139 #endif
1140
1141     /* Try to create the interface */
1142     p_intf = intf_Create( p_libvlc, psz_module ? psz_module : "$intf",
1143                           i_options, ppsz_options );
1144     if( p_intf == NULL )
1145     {
1146         msg_Err( p_libvlc, "interface \"%s\" initialization failed",
1147                  psz_module );
1148         return VLC_EGENERIC;
1149     }
1150
1151     /* Interface doesn't handle play on start so do it ourselves */
1152     if( !p_intf->b_play && b_play )
1153         playlist_Play( p_libvlc->p_playlist );
1154
1155     /* Try to run the interface */
1156     p_intf->b_play = b_play;
1157     i_err = intf_RunThread( p_intf );
1158     if( i_err || p_intf->b_should_run_on_first_thread )
1159     {
1160         vlc_object_detach( p_intf );
1161         intf_Destroy( p_intf );
1162         p_intf = NULL;
1163         return i_err;
1164     }
1165
1166     if( b_block )
1167     {
1168         /* FIXME: should be moved to interface/interface.c */
1169         if( p_intf->pf_run )
1170             vlc_thread_join( p_intf );
1171         else
1172             while( vlc_object_lock_and_wait( p_intf ) == 0 );
1173
1174         vlc_object_detach( p_intf );
1175         intf_Destroy( p_intf );
1176     }
1177
1178     return VLC_SUCCESS;
1179 };
1180
1181 #if defined( ENABLE_NLS ) && (defined (__APPLE__) || defined (WIN32)) && \
1182     ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
1183 /*****************************************************************************
1184  * SetLanguage: set the interface language.
1185  *****************************************************************************
1186  * We set the LC_MESSAGES locale category for interface messages and buttons,
1187  * as well as the LC_CTYPE category for string sorting and possible wide
1188  * character support.
1189  *****************************************************************************/
1190 static void SetLanguage ( const char *psz_lang )
1191 {
1192 #ifdef __APPLE__
1193     /* I need that under Darwin, please check it doesn't disturb
1194      * other platforms. --Meuuh */
1195     setenv( "LANG", psz_lang, 1 );
1196
1197 #else
1198     /* We set LC_ALL manually because it is the only way to set
1199      * the language at runtime under eg. Windows. Beware that this
1200      * makes the environment unconsistent when libvlc is unloaded and
1201      * should probably be moved to a safer place like vlc.c. */
1202     static char psz_lcall[20];
1203     snprintf( psz_lcall, 19, "LC_ALL=%s", psz_lang );
1204     psz_lcall[19] = '\0';
1205     putenv( psz_lcall );
1206 #endif
1207
1208     setlocale( LC_ALL, psz_lang );
1209 }
1210 #endif
1211
1212
1213 static inline int LoadMessages (void)
1214 {
1215 #if defined( ENABLE_NLS ) \
1216      && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
1217     /* Specify where to find the locales for current domain */
1218 #if !defined( __APPLE__ ) && !defined( WIN32 ) && !defined( SYS_BEOS )
1219     static const char psz_path[] = LOCALEDIR;
1220 #else
1221     char psz_path[1024];
1222     if (snprintf (psz_path, sizeof (psz_path), "%s/%s",
1223                   p_libvlc_global->psz_vlcpath, "locale")
1224                      >= (int)sizeof (psz_path))
1225         return -1;
1226
1227 #endif
1228     if (bindtextdomain (PACKAGE_NAME, psz_path) == NULL)
1229     {
1230         fprintf (stderr, "Warning: cannot bind text domain "PACKAGE_NAME
1231                          " to directory %s\n", psz_path);
1232         return -1;
1233     }
1234
1235     /* LibVLC wants all messages in UTF-8.
1236      * Unfortunately, we cannot ask UTF-8 for strerror_r(), strsignal_r()
1237      * and other functions that are not part of our text domain.
1238      */
1239     if (bind_textdomain_codeset (PACKAGE_NAME, "UTF-8") == NULL)
1240     {
1241         fprintf (stderr, "Error: cannot set Unicode encoding for text domain "
1242                          PACKAGE_NAME"\n");
1243         // Unbinds the text domain to avoid broken encoding
1244         bindtextdomain (PACKAGE_NAME, "DOES_NOT_EXIST");
1245         return -1;
1246     }
1247
1248     /* LibVLC does NOT set the default textdomain, since it is a library.
1249      * This could otherwise break programs using LibVLC (other than VLC).
1250      * textdomain (PACKAGE_NAME);
1251      */
1252 #endif
1253     return 0;
1254 }
1255
1256 /*****************************************************************************
1257  * GetFilenames: parse command line options which are not flags
1258  *****************************************************************************
1259  * Parse command line for input files as well as their associated options.
1260  * An option always follows its associated input and begins with a ":".
1261  *****************************************************************************/
1262 static int GetFilenames( libvlc_int_t *p_vlc, int i_argc, const char *ppsz_argv[] )
1263 {
1264     int i_opt, i_options;
1265
1266     /* We assume that the remaining parameters are filenames
1267      * and their input options */
1268     for( i_opt = i_argc - 1; i_opt >= optind; i_opt-- )
1269     {
1270         i_options = 0;
1271
1272         /* Count the input options */
1273         while( *ppsz_argv[ i_opt ] == ':' && i_opt > optind )
1274         {
1275             i_options++;
1276             i_opt--;
1277         }
1278
1279         /* TODO: write an internal function of this one, to avoid
1280          *       unnecessary lookups. */
1281
1282         VLC_AddTarget( p_vlc->i_object_id, ppsz_argv[i_opt],
1283                        ( i_options ? &ppsz_argv[i_opt + 1] :
1284                                         NULL ), i_options,
1285                        PLAYLIST_INSERT, 0 );
1286     }
1287
1288     return VLC_SUCCESS;
1289 }
1290
1291 /*****************************************************************************
1292  * Help: print program help
1293  *****************************************************************************
1294  * Print a short inline help. Message interface is initialized at this stage.
1295  *****************************************************************************/
1296 static void Help( libvlc_int_t *p_this, char const *psz_help_name )
1297 {
1298 #ifdef WIN32
1299     ShowConsole( true );
1300 #endif
1301
1302     if( psz_help_name && !strcmp( psz_help_name, "help" ) )
1303     {
1304         utf8_fprintf( stdout, vlc_usage, p_this->psz_object_name );
1305         Usage( p_this, "help" );
1306         Usage( p_this, "main" );
1307     }
1308     else if( psz_help_name && !strcmp( psz_help_name, "longhelp" ) )
1309     {
1310         utf8_fprintf( stdout, vlc_usage, p_this->psz_object_name );
1311         Usage( p_this, NULL );
1312     }
1313     else if( psz_help_name )
1314     {
1315         Usage( p_this, psz_help_name );
1316     }
1317
1318 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1319     PauseConsole();
1320 #endif
1321 }
1322
1323 /*****************************************************************************
1324  * Usage: print module usage
1325  *****************************************************************************
1326  * Print a short inline help. Message interface is initialized at this stage.
1327  *****************************************************************************/
1328 static void Usage( libvlc_int_t *p_this, char const *psz_module_name )
1329 {
1330 #define FORMAT_STRING "  %s --%s%s%s%s%s%s%s "
1331     /* short option ------'    | | | | | | |
1332      * option name ------------' | | | | | |
1333      * <bra ---------------------' | | | | |
1334      * option type or "" ----------' | | | |
1335      * ket> -------------------------' | | |
1336      * padding spaces -----------------' | |
1337      * comment --------------------------' |
1338      * comment suffix ---------------------'
1339      *
1340      * The purpose of having bra and ket is that we might i18n them as well.
1341      */
1342
1343 #   define COL(x)  "\033[" #x ";1m"
1344 #   define RED     COL(31)
1345 #   define GREEN   COL(32)
1346 #   define YELLOW  COL(33)
1347 #   define BLUE    COL(34)
1348 #   define MAGENTA COL(35)
1349 #   define CYAN    COL(36)
1350 #   define WHITE   COL(0)
1351 #   define GRAY    "\033[0m"
1352 #define COLOR_FORMAT_STRING (WHITE"  %s --%s"YELLOW"%s%s%s%s%s%s "GRAY)
1353 #define COLOR_FORMAT_STRING_BOOL (WHITE"  %s --%s%s%s%s%s%s%s "GRAY)
1354
1355 #define LINE_START 8
1356 #define PADDING_SPACES 25
1357 #ifdef WIN32
1358 #   define OPTION_VALUE_SEP "="
1359 #else
1360 #   define OPTION_VALUE_SEP " "
1361 #endif
1362     vlc_list_t *p_list = NULL;
1363     char psz_spaces_text[PADDING_SPACES+LINE_START+1];
1364     char psz_spaces_longtext[LINE_START+3];
1365     char psz_format[sizeof(COLOR_FORMAT_STRING)];
1366     char psz_format_bool[sizeof(COLOR_FORMAT_STRING_BOOL)];
1367     char psz_buffer[10000];
1368     char psz_short[4];
1369     int i_index;
1370     int i_width = ConsoleWidth() - (PADDING_SPACES+LINE_START+1);
1371     int i_width_description = i_width + PADDING_SPACES - 1;
1372     bool b_advanced    = config_GetInt( p_this, "advanced" ) > 0;
1373     bool b_description = config_GetInt( p_this, "help-verbose" ) > 0;
1374     bool b_description_hack;
1375     bool b_color       = config_GetInt( p_this, "color" ) > 0;
1376     bool b_has_advanced = false;
1377
1378     memset( psz_spaces_text, ' ', PADDING_SPACES+LINE_START );
1379     psz_spaces_text[PADDING_SPACES+LINE_START] = '\0';
1380     memset( psz_spaces_longtext, ' ', LINE_START+2 );
1381     psz_spaces_longtext[LINE_START+2] = '\0';
1382 #ifdef WIN32
1383     b_color = false; // don't put color control codes in a .txt file
1384 #endif
1385
1386     if( b_color )
1387     {
1388         strcpy( psz_format, COLOR_FORMAT_STRING );
1389         strcpy( psz_format_bool, COLOR_FORMAT_STRING_BOOL );
1390     }
1391     else
1392     {
1393         strcpy( psz_format, FORMAT_STRING );
1394         strcpy( psz_format_bool, FORMAT_STRING );
1395     }
1396
1397     /* List all modules */
1398     p_list = vlc_list_find( p_this, VLC_OBJECT_MODULE, FIND_ANYWHERE );
1399
1400     /* Ugly hack to make sure that the help options always come first
1401      * (part 1) */
1402     if( !psz_module_name )
1403         Usage( p_this, "help" );
1404
1405     /* Enumerate the config for each module */
1406     for( i_index = 0; i_index < p_list->i_count; i_index++ )
1407     {
1408         bool b_help_module;
1409         module_t *p_parser = (module_t *)p_list->p_values[i_index].p_object;
1410         module_config_t *p_item = NULL;
1411         module_config_t *p_end = p_parser->p_config + p_parser->confsize;
1412
1413         if( psz_module_name && strcmp( psz_module_name,
1414                                        p_parser->psz_object_name ) )
1415         {
1416             const char *const *pp_shortcut = p_parser->pp_shortcuts;
1417             while( *pp_shortcut )
1418             {
1419                 if( !strcmp( psz_module_name, *pp_shortcut ) )
1420                     break;
1421                 pp_shortcut ++;
1422             }
1423             if( !*pp_shortcut )
1424                 continue;
1425         }
1426
1427         /* Ignore modules without config options */
1428         if( !p_parser->i_config_items )
1429         {
1430             continue;
1431         }
1432
1433         b_help_module = !strcmp( "help", p_parser->psz_object_name );
1434         /* Ugly hack to make sure that the help options always come first
1435          * (part 2) */
1436         if( !psz_module_name && b_help_module )
1437             continue;
1438
1439         /* Ignore modules with only advanced config options if requested */
1440         if( !b_advanced )
1441         {
1442             for( p_item = p_parser->p_config;
1443                  p_item < p_end;
1444                  p_item++ )
1445             {
1446                 if( (p_item->i_type & CONFIG_ITEM) &&
1447                     !p_item->b_advanced ) break;
1448             }
1449         }
1450
1451         /* Print name of module */
1452         if( strcmp( "main", p_parser->psz_object_name ) )
1453         {
1454             if( b_color )
1455                 utf8_fprintf( stdout, "\n " GREEN "%s" GRAY "\n",
1456                               p_parser->psz_longname );
1457             else
1458                 utf8_fprintf( stdout, "\n %s\n", p_parser->psz_longname );
1459         }
1460         if( p_parser->psz_help )
1461         {
1462             if( b_color )
1463                 utf8_fprintf( stdout, CYAN" %s\n"GRAY, p_parser->psz_help );
1464             else
1465                 utf8_fprintf( stdout, " %s\n", p_parser->psz_help );
1466         }
1467
1468         /* Print module options */
1469         for( p_item = p_parser->p_config;
1470              p_item < p_end;
1471              p_item++ )
1472         {
1473             char *psz_text, *psz_spaces = psz_spaces_text;
1474             const char *psz_bra = NULL, *psz_type = NULL, *psz_ket = NULL;
1475             const char *psz_suf = "", *psz_prefix = NULL;
1476             signed int i;
1477             size_t i_cur_width;
1478
1479             /* Skip removed options */
1480             if( p_item->b_removed )
1481             {
1482                 continue;
1483             }
1484             /* Skip advanced options if requested */
1485             if( p_item->b_advanced && !b_advanced )
1486             {
1487                 b_has_advanced = true;
1488                 continue;
1489             }
1490
1491             switch( p_item->i_type )
1492             {
1493             case CONFIG_HINT_CATEGORY:
1494             case CONFIG_HINT_USAGE:
1495                 if( !strcmp( "main", p_parser->psz_object_name ) )
1496                 {
1497                     if( b_color )
1498                         utf8_fprintf( stdout, GREEN "\n %s\n" GRAY,
1499                                       p_item->psz_text );
1500                     else
1501                         utf8_fprintf( stdout, "\n %s\n", p_item->psz_text );
1502                 }
1503                 if( b_description && p_item->psz_longtext )
1504                 {
1505                     if( b_color )
1506                         utf8_fprintf( stdout, CYAN " %s\n" GRAY,
1507                                       p_item->psz_longtext );
1508                     else
1509                         utf8_fprintf( stdout, " %s\n", p_item->psz_longtext );
1510                 }
1511                 break;
1512
1513             case CONFIG_HINT_SUBCATEGORY:
1514                 if( strcmp( "main", p_parser->psz_object_name ) )
1515                 break;
1516             case CONFIG_SECTION:
1517                 if( b_color )
1518                 {
1519                     utf8_fprintf( stdout, RED"   %s:\n"GRAY,
1520                                   p_item->psz_text );
1521                     if( b_description && p_item->psz_longtext )
1522                         utf8_fprintf( stdout, MAGENTA"   %s\n"GRAY,
1523                                       p_item->psz_longtext );
1524                 }
1525                 else
1526                 {
1527                     utf8_fprintf( stdout, "   %s:\n", p_item->psz_text );
1528                     if( b_description && p_item->psz_longtext )
1529                         utf8_fprintf( stdout, "   %s\n", p_item->psz_longtext );
1530                 }
1531                 break;
1532
1533             case CONFIG_ITEM_STRING:
1534             case CONFIG_ITEM_FILE:
1535             case CONFIG_ITEM_DIRECTORY:
1536             case CONFIG_ITEM_MODULE: /* We could also have "=<" here */
1537             case CONFIG_ITEM_MODULE_CAT:
1538             case CONFIG_ITEM_MODULE_LIST:
1539             case CONFIG_ITEM_MODULE_LIST_CAT:
1540             case CONFIG_ITEM_FONT:
1541             case CONFIG_ITEM_PASSWORD:
1542                 psz_bra = OPTION_VALUE_SEP "<";
1543                 psz_type = _("string");
1544                 psz_ket = ">";
1545
1546                 if( p_item->ppsz_list )
1547                 {
1548                     psz_bra = OPTION_VALUE_SEP "{";
1549                     psz_type = psz_buffer;
1550                     psz_buffer[0] = '\0';
1551                     for( i = 0; p_item->ppsz_list[i]; i++ )
1552                     {
1553                         if( i ) strcat( psz_buffer, "," );
1554                         strcat( psz_buffer, p_item->ppsz_list[i] );
1555                     }
1556                     psz_ket = "}";
1557                 }
1558                 break;
1559             case CONFIG_ITEM_INTEGER:
1560             case CONFIG_ITEM_KEY: /* FIXME: do something a bit more clever */
1561                 psz_bra = OPTION_VALUE_SEP "<";
1562                 psz_type = _("integer");
1563                 psz_ket = ">";
1564
1565                 if( p_item->min.i || p_item->max.i )
1566                 {
1567                     sprintf( psz_buffer, "%s [%i .. %i]", psz_type,
1568                              p_item->min.i, p_item->max.i );
1569                     psz_type = psz_buffer;
1570                 }
1571
1572                 if( p_item->i_list )
1573                 {
1574                     psz_bra = OPTION_VALUE_SEP "{";
1575                     psz_type = psz_buffer;
1576                     psz_buffer[0] = '\0';
1577                     for( i = 0; p_item->ppsz_list_text[i]; i++ )
1578                     {
1579                         if( i ) strcat( psz_buffer, ", " );
1580                         sprintf( psz_buffer + strlen(psz_buffer), "%i (%s)",
1581                                  p_item->pi_list[i],
1582                                  p_item->ppsz_list_text[i] );
1583                     }
1584                     psz_ket = "}";
1585                 }
1586                 break;
1587             case CONFIG_ITEM_FLOAT:
1588                 psz_bra = OPTION_VALUE_SEP "<";
1589                 psz_type = _("float");
1590                 psz_ket = ">";
1591                 if( p_item->min.f || p_item->max.f )
1592                 {
1593                     sprintf( psz_buffer, "%s [%f .. %f]", psz_type,
1594                              p_item->min.f, p_item->max.f );
1595                     psz_type = psz_buffer;
1596                 }
1597                 break;
1598             case CONFIG_ITEM_BOOL:
1599                 psz_bra = ""; psz_type = ""; psz_ket = "";
1600                 if( !b_help_module )
1601                 {
1602                     psz_suf = p_item->value.i ? _(" (default enabled)") :
1603                                                 _(" (default disabled)");
1604                 }
1605                 break;
1606             }
1607
1608             if( !psz_type )
1609             {
1610                 continue;
1611             }
1612
1613             /* Add short option if any */
1614             if( p_item->i_short )
1615             {
1616                 sprintf( psz_short, "-%c,", p_item->i_short );
1617             }
1618             else
1619             {
1620                 strcpy( psz_short, "   " );
1621             }
1622
1623             i = PADDING_SPACES - strlen( p_item->psz_name )
1624                  - strlen( psz_bra ) - strlen( psz_type )
1625                  - strlen( psz_ket ) - 1;
1626
1627             if( p_item->i_type == CONFIG_ITEM_BOOL && !b_help_module )
1628             {
1629                 psz_prefix =  ", --no-";
1630                 i -= strlen( p_item->psz_name ) + strlen( psz_prefix );
1631             }
1632
1633             if( i < 0 )
1634             {
1635                 psz_spaces[0] = '\n';
1636                 i = 0;
1637             }
1638             else
1639             {
1640                 psz_spaces[i] = '\0';
1641             }
1642
1643             if( p_item->i_type == CONFIG_ITEM_BOOL && !b_help_module )
1644             {
1645                 utf8_fprintf( stdout, psz_format_bool, psz_short, 
1646                               p_item->psz_name, psz_prefix, p_item->psz_name,
1647                               psz_bra, psz_type, psz_ket, psz_spaces );
1648             }
1649             else
1650             {
1651                 utf8_fprintf( stdout, psz_format, psz_short, p_item->psz_name,
1652                          "", "", psz_bra, psz_type, psz_ket, psz_spaces );
1653             }
1654
1655             psz_spaces[i] = ' ';
1656
1657             /* We wrap the rest of the output */
1658             sprintf( psz_buffer, "%s%s", p_item->psz_text, psz_suf );
1659             b_description_hack = b_description;
1660
1661  description:
1662             psz_text = psz_buffer;
1663             i_cur_width = b_description && !b_description_hack
1664                           ? i_width_description
1665                           : i_width;
1666             while( *psz_text )
1667             {
1668                 char *psz_parser, *psz_word;
1669                 size_t i_end = strlen( psz_text );
1670
1671                 /* If the remaining text fits in a line, print it. */
1672                 if( i_end <= i_cur_width )
1673                 {
1674                     if( b_color )
1675                     {
1676                         if( !b_description || b_description_hack )
1677                             utf8_fprintf( stdout, BLUE"%s\n"GRAY, psz_text );
1678                         else
1679                             utf8_fprintf( stdout, "%s\n", psz_text );
1680                     }
1681                     else
1682                     {
1683                         utf8_fprintf( stdout, "%s\n", psz_text );
1684                     }
1685                     break;
1686                 }
1687
1688                 /* Otherwise, eat as many words as possible */
1689                 psz_parser = psz_text;
1690                 do
1691                 {
1692                     psz_word = psz_parser;
1693                     psz_parser = strchr( psz_word, ' ' );
1694                     /* If no space was found, we reached the end of the text
1695                      * block; otherwise, we skip the space we just found. */
1696                     psz_parser = psz_parser ? psz_parser + 1
1697                                             : psz_text + i_end;
1698
1699                 } while( (size_t)(psz_parser - psz_text) <= i_cur_width );
1700
1701                 /* We cut a word in one of these cases:
1702                  *  - it's the only word in the line and it's too long.
1703                  *  - we used less than 80% of the width and the word we are
1704                  *    going to wrap is longer than 40% of the width, and even
1705                  *    if the word would have fit in the next line. */
1706                 if( psz_word == psz_text
1707              || ( (size_t)(psz_word - psz_text) < 80 * i_cur_width / 100
1708              && (size_t)(psz_parser - psz_word) > 40 * i_cur_width / 100 ) )
1709                 {
1710                     char c = psz_text[i_cur_width];
1711                     psz_text[i_cur_width] = '\0';
1712                     if( b_color )
1713                     {
1714                         if( !b_description || b_description_hack )
1715                             utf8_fprintf( stdout, BLUE"%s\n%s"GRAY,
1716                                           psz_text, psz_spaces );
1717                         else
1718                             utf8_fprintf( stdout, "%s\n%s",
1719                                           psz_text, psz_spaces );
1720                     }
1721                     else
1722                     {
1723                         utf8_fprintf( stdout, "%s\n%s", psz_text, psz_spaces );
1724                     }
1725                     psz_text += i_cur_width;
1726                     psz_text[0] = c;
1727                 }
1728                 else
1729                 {
1730                     psz_word[-1] = '\0';
1731                     if( b_color )
1732                     {
1733                         if( !b_description || b_description_hack )
1734                             utf8_fprintf( stdout, BLUE"%s\n%s"GRAY,
1735                                           psz_text, psz_spaces );
1736                         else
1737                             utf8_fprintf( stdout, "%s\n%s",
1738                                           psz_text, psz_spaces );
1739                     }
1740                     else
1741                     {
1742                         utf8_fprintf( stdout, "%s\n%s", psz_text, psz_spaces );
1743                     }
1744                     psz_text = psz_word;
1745                 }
1746             }
1747
1748             if( b_description_hack && p_item->psz_longtext )
1749             {
1750                 sprintf( psz_buffer, "%s%s", p_item->psz_longtext, psz_suf );
1751                 b_description_hack = false;
1752                 psz_spaces = psz_spaces_longtext;
1753                 utf8_fprintf( stdout, "%s", psz_spaces );
1754                 goto description;
1755             }
1756         }
1757     }
1758
1759     if( b_has_advanced ) 
1760     {
1761         if( b_color )
1762             utf8_fprintf( stdout, "\n" WHITE "%s" GRAY " %s\n", _( "Note:" ),
1763            _( "add --advanced to your command line to see advanced options."));
1764         else
1765             utf8_fprintf( stdout, "\n %s %s\n", _( "Note:" ),
1766            _( "add --advanced to your command line to see advanced options."));
1767     }
1768
1769     /* Release the module list */
1770     vlc_list_release( p_list );
1771 }
1772
1773 /*****************************************************************************
1774  * ListModules: list the available modules with their description
1775  *****************************************************************************
1776  * Print a list of all available modules (builtins and plugins) and a short
1777  * description for each one.
1778  *****************************************************************************/
1779 static void ListModules( libvlc_int_t *p_this, bool b_verbose )
1780 {
1781     vlc_list_t *p_list = NULL;
1782     module_t *p_parser = NULL;
1783     char psz_spaces[22];
1784     int i_index;
1785
1786     bool b_color = config_GetInt( p_this, "color" ) > 0;
1787
1788     memset( psz_spaces, ' ', 22 );
1789
1790 #ifdef WIN32
1791     ShowConsole( true );
1792 #endif
1793
1794     /* List all modules */
1795     p_list = vlc_list_find( p_this, VLC_OBJECT_MODULE, FIND_ANYWHERE );
1796
1797     /* Enumerate each module */
1798     for( i_index = 0; i_index < p_list->i_count; i_index++ )
1799     {
1800         int i;
1801
1802         p_parser = (module_t *)p_list->p_values[i_index].p_object ;
1803
1804         /* Nasty hack, but right now I'm too tired to think about a nice
1805          * solution */
1806         i = 22 - strlen( p_parser->psz_object_name ) - 1;
1807         if( i < 0 ) i = 0;
1808         psz_spaces[i] = 0;
1809
1810         if( b_color )
1811             utf8_fprintf( stdout, GREEN"  %s%s "WHITE"%s\n"GRAY,
1812                           p_parser->psz_object_name,
1813                           psz_spaces,
1814                           p_parser->psz_longname );
1815         else
1816             utf8_fprintf( stdout, "  %s%s %s\n",
1817                           p_parser->psz_object_name,
1818                           psz_spaces, p_parser->psz_longname );
1819
1820         if( b_verbose )
1821         {
1822             const char *const *pp_shortcut = p_parser->pp_shortcuts;
1823             while( *pp_shortcut )
1824             {
1825                 if( strcmp( *pp_shortcut, p_parser->psz_object_name ) )
1826                 {
1827                     if( b_color )
1828                         utf8_fprintf( stdout, CYAN"   s %s\n"GRAY,
1829                                       *pp_shortcut );
1830                     else
1831                         utf8_fprintf( stdout, "   s %s\n",
1832                                       *pp_shortcut );
1833                 }
1834                 pp_shortcut++;
1835             }
1836             if( p_parser->psz_capability )
1837             {
1838                 if( b_color )
1839                     utf8_fprintf( stdout, MAGENTA"   c %s (%d)\n"GRAY,
1840                                   p_parser->psz_capability,
1841                                   p_parser->i_score );
1842                 else
1843                     utf8_fprintf( stdout, "   c %s (%d)\n",
1844                                   p_parser->psz_capability,
1845                                   p_parser->i_score );
1846             }
1847         }
1848
1849         psz_spaces[i] = ' ';
1850     }
1851
1852     vlc_list_release( p_list );
1853
1854 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1855     PauseConsole();
1856 #endif
1857 }
1858
1859 /*****************************************************************************
1860  * Version: print complete program version
1861  *****************************************************************************
1862  * Print complete program version and build number.
1863  *****************************************************************************/
1864 static void Version( void )
1865 {
1866 #ifdef WIN32
1867     ShowConsole( true );
1868 #endif
1869
1870     utf8_fprintf( stdout, _("VLC version %s\n"), VLC_Version() );
1871     utf8_fprintf( stdout, _("Compiled by %s@%s.%s\n"),
1872              VLC_CompileBy(), VLC_CompileHost(), VLC_CompileDomain() );
1873     utf8_fprintf( stdout, _("Compiler: %s\n"), VLC_Compiler() );
1874     if( strcmp( VLC_Changeset(), "exported" ) )
1875         utf8_fprintf( stdout, _("Based upon Git commit [%s]\n"),
1876                  VLC_Changeset() );
1877     utf8_fprintf( stdout, LICENSE_MSG );
1878
1879 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1880     PauseConsole();
1881 #endif
1882 }
1883
1884 /*****************************************************************************
1885  * ShowConsole: On Win32, create an output console for debug messages
1886  *****************************************************************************
1887  * This function is useful only on Win32.
1888  *****************************************************************************/
1889 #ifdef WIN32 /*  */
1890 static void ShowConsole( bool b_dofile )
1891 {
1892 #   ifndef UNDER_CE
1893     FILE *f_help = NULL;
1894
1895     if( getenv( "PWD" ) && getenv( "PS1" ) ) return; /* cygwin shell */
1896
1897     AllocConsole();
1898     /* Use the ANSI code page (e.g. Windows-1252) as expected by the LibVLC
1899      * Unicode/locale subsystem. By default, we have the obsolecent OEM code
1900      * page (e.g. CP437 or CP850). */
1901     SetConsoleOutputCP (GetACP ());
1902     SetConsoleTitle ("VLC media player version "PACKAGE_VERSION);
1903
1904     freopen( "CONOUT$", "w", stderr );
1905     freopen( "CONIN$", "r", stdin );
1906
1907     if( b_dofile && (f_help = fopen( "vlc-help.txt", "wt" )) )
1908     {
1909         fclose( f_help );
1910         freopen( "vlc-help.txt", "wt", stdout );
1911         utf8_fprintf( stderr, _("\nDumped content to vlc-help.txt file.\n") );
1912     }
1913     else freopen( "CONOUT$", "w", stdout );
1914
1915 #   endif
1916 }
1917 #endif
1918
1919 /*****************************************************************************
1920  * PauseConsole: On Win32, wait for a key press before closing the console
1921  *****************************************************************************
1922  * This function is useful only on Win32.
1923  *****************************************************************************/
1924 #ifdef WIN32 /*  */
1925 static void PauseConsole( void )
1926 {
1927 #   ifndef UNDER_CE
1928
1929     if( getenv( "PWD" ) && getenv( "PS1" ) ) return; /* cygwin shell */
1930
1931     utf8_fprintf( stderr, _("\nPress the RETURN key to continue...\n") );
1932     getchar();
1933     fclose( stdout );
1934
1935 #   endif
1936 }
1937 #endif
1938
1939 /*****************************************************************************
1940  * ConsoleWidth: Return the console width in characters
1941  *****************************************************************************
1942  * We use the stty shell command to get the console width; if this fails or
1943  * if the width is less than 80, we default to 80.
1944  *****************************************************************************/
1945 static int ConsoleWidth( void )
1946 {
1947     unsigned i_width = 80;
1948
1949 #ifndef WIN32
1950     FILE *file = popen( "stty size 2>/dev/null", "r" );
1951     if (file != NULL)
1952     {
1953         if (fscanf (file, "%*u %u", &i_width) <= 0)
1954             i_width = 80;
1955         pclose( file );
1956     }
1957 #else
1958     CONSOLE_SCREEN_BUFFER_INFO buf;
1959
1960     if (GetConsoleScreenBufferInfo (GetStdHandle (STD_OUTPUT_HANDLE), &buf))
1961         i_width = buf.dwSize.X;
1962 #endif
1963
1964     return i_width;
1965 }
1966
1967 static int VerboseCallback( vlc_object_t *p_this, const char *psz_variable,
1968                      vlc_value_t old_val, vlc_value_t new_val, void *param)
1969 {
1970     libvlc_int_t *p_libvlc = (libvlc_int_t *)p_this;
1971     (void)psz_variable;
1972     (void)old_val;
1973     (void)param;
1974
1975     if( new_val.i_int >= -1 )
1976     {
1977         p_libvlc->i_verbose = __MIN( new_val.i_int, 2 );
1978     }
1979     return VLC_SUCCESS;
1980 }
1981
1982 /*****************************************************************************
1983  * InitDeviceValues: initialize device values
1984  *****************************************************************************
1985  * This function inits the dvd, vcd and cd-audio values
1986  *****************************************************************************/
1987 static void InitDeviceValues( libvlc_int_t *p_vlc )
1988 {
1989 #ifdef HAVE_HAL
1990     LibHalContext * ctx = NULL;
1991     int i, i_devices;
1992     char **devices = NULL;
1993     char *block_dev = NULL;
1994     dbus_bool_t b_dvd;
1995
1996 #ifdef HAVE_HAL_1
1997     DBusConnection *p_connection = NULL;
1998     DBusError       error;
1999
2000     ctx = libhal_ctx_new();
2001     if( !ctx ) return;
2002     dbus_error_init( &error );
2003     p_connection = dbus_bus_get ( DBUS_BUS_SYSTEM, &error );
2004     if( dbus_error_is_set( &error ) || !p_connection )
2005     {
2006         dbus_error_free( &error );
2007         return;
2008     }
2009     libhal_ctx_set_dbus_connection( ctx, p_connection );
2010     if( libhal_ctx_init( ctx, &error ) )
2011 #else
2012     ctx = hal_initialize( NULL, FALSE );
2013     if( ctx )
2014 #endif
2015
2016     {
2017 #ifdef HAVE_HAL_1
2018         if( ( devices = libhal_get_all_devices( ctx, &i_devices, NULL ) ) )
2019 #else
2020         if( ( devices = hal_get_all_devices( ctx, &i_devices ) ) )
2021 #endif
2022         {
2023             for( i = 0; i < i_devices; i++ )
2024             {
2025 #ifdef HAVE_HAL_1
2026                 if( !libhal_device_property_exists( ctx, devices[i],
2027                                                 "storage.cdrom.dvd", NULL ) )
2028 #else
2029                 if( !hal_device_property_exists( ctx, devices[ i ],
2030                                                 "storage.cdrom.dvd" ) )
2031 #endif
2032                 {
2033                     continue;
2034                 }
2035 #ifdef HAVE_HAL_1
2036                 b_dvd = libhal_device_get_property_bool( ctx, devices[ i ],
2037                                                  "storage.cdrom.dvd", NULL  );
2038                 block_dev = libhal_device_get_property_string( ctx,
2039                                 devices[ i ], "block.device" , NULL );
2040 #else
2041                 b_dvd = hal_device_get_property_bool( ctx, devices[ i ],
2042                                                       "storage.cdrom.dvd" );
2043                 block_dev = hal_device_get_property_string( ctx, devices[ i ],
2044                                                             "block.device" );
2045 #endif
2046                 if( b_dvd )
2047                 {
2048                     config_PutPsz( p_vlc, "dvd", block_dev );
2049                 }
2050
2051                 config_PutPsz( p_vlc, "vcd", block_dev );
2052                 config_PutPsz( p_vlc, "cd-audio", block_dev );
2053 #ifdef HAVE_HAL_1
2054                 libhal_free_string( block_dev );
2055 #else
2056                 hal_free_string( block_dev );
2057 #endif
2058             }
2059 #ifdef HAVE_HAL_1
2060             libhal_free_string_array( devices );
2061 #else
2062             hal_free_string_array( devices );
2063 #endif
2064         }
2065
2066 #ifdef HAVE_HAL_1
2067         libhal_ctx_shutdown( ctx, NULL );
2068         dbus_connection_unref( p_connection );
2069         libhal_ctx_free( ctx );
2070 #else
2071         hal_shutdown( ctx );
2072 #endif
2073     }
2074     else
2075     {
2076         msg_Warn( p_vlc, "Unable to get HAL device properties" );
2077     }
2078 #else
2079     (void)p_vlc;
2080 #endif /* HAVE_HAL */
2081 }