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