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