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