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