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