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