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