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