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