]> git.sesse.net Git - vlc/blob - src/libvlc.c
Use <vlc_cpu.h>
[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
765     PRINT_CAPABILITY( CPU_CAPABILITY_MMX, "MMX" );
766     PRINT_CAPABILITY( CPU_CAPABILITY_3DNOW, "3DNow!" );
767     PRINT_CAPABILITY( CPU_CAPABILITY_MMXEXT, "MMXEXT" );
768     PRINT_CAPABILITY( CPU_CAPABILITY_SSE, "SSE" );
769     PRINT_CAPABILITY( CPU_CAPABILITY_SSE2, "SSE2" );
770
771 #elif defined( __powerpc__ ) || defined( __ppc__ ) || defined( __ppc64__ )
772     if( !config_GetInt( p_libvlc, "altivec" ) )
773         cpu_flags &= ~CPU_CAPABILITY_ALTIVEC;
774
775     PRINT_CAPABILITY( CPU_CAPABILITY_ALTIVEC, "AltiVec" );
776
777 #elif defined( __arm__ )
778     PRINT_CAPABILITY( CPU_CAPABILITY_NEON, "NEONv1" );
779
780 #endif
781
782     PRINT_CAPABILITY( CPU_CAPABILITY_FPU, "FPU" );
783     msg_Dbg( p_libvlc, "CPU has capabilities %s", p_capabilities );
784
785     /*
786      * Choose the best memcpy module
787      */
788     priv->p_memcpy_module = module_need( p_libvlc, "memcpy", "$memcpy", false );
789     /* Avoid being called "memcpy":*/
790     vlc_object_set_name( p_libvlc, "main" );
791
792     priv->b_stats = config_GetInt( p_libvlc, "stats" ) > 0;
793     priv->i_timers = 0;
794     priv->pp_timers = NULL;
795
796     priv->i_last_input_id = 0; /* Not very safe, should be removed */
797
798     /*
799      * Initialize hotkey handling
800      */
801     var_Create( p_libvlc, "key-pressed", VLC_VAR_INTEGER );
802     var_Create( p_libvlc, "key-action", VLC_VAR_INTEGER );
803     {
804         struct hotkey *p_keys =
805             malloc( (libvlc_actions_count + 1) * sizeof (*p_keys) );
806
807         /* Initialize from configuration */
808         for( size_t i = 0; i < libvlc_actions_count; i++ )
809         {
810             p_keys[i].psz_action = libvlc_actions[i].name;
811             p_keys[i].i_key = config_GetInt( p_libvlc,
812                                              libvlc_actions[i].name );
813             p_keys[i].i_action = libvlc_actions[i].value;
814         }
815         p_keys[libvlc_actions_count].psz_action = NULL;
816         p_keys[libvlc_actions_count].i_key = 0;
817         p_keys[libvlc_actions_count].i_action = 0;
818         p_libvlc->p_hotkeys = p_keys;
819         var_AddCallback( p_libvlc, "key-pressed", vlc_key_to_action,
820                          p_keys );
821     }
822
823     /* variables for signalling creation of new files */
824     var_Create( p_libvlc, "snapshot-file", VLC_VAR_STRING );
825     var_Create( p_libvlc, "record-file", VLC_VAR_STRING );
826
827     /* Initialize playlist and get commandline files */
828     p_playlist = playlist_Create( VLC_OBJECT(p_libvlc) );
829     if( !p_playlist )
830     {
831         msg_Err( p_libvlc, "playlist initialization failed" );
832         if( priv->p_memcpy_module != NULL )
833         {
834             module_unneed( p_libvlc, priv->p_memcpy_module );
835         }
836         module_EndBank( p_libvlc, true );
837         return VLC_EGENERIC;
838     }
839     playlist_Activate( p_playlist );
840     vlc_object_attach( p_playlist, p_libvlc );
841
842     /* Add service discovery modules */
843     psz_modules = config_GetPsz( p_playlist, "services-discovery" );
844     if( psz_modules && *psz_modules )
845     {
846         char *p = psz_modules, *m;
847         while( ( m = strsep( &p, " :," ) ) != NULL )
848             playlist_ServicesDiscoveryAdd( p_playlist, m );
849     }
850     free( psz_modules );
851
852 #ifdef ENABLE_VLM
853     /* Initialize VLM if vlm-conf is specified */
854     psz_parser = config_GetPsz( p_libvlc, "vlm-conf" );
855     if( psz_parser && *psz_parser )
856     {
857         priv->p_vlm = vlm_New( p_libvlc );
858         if( !priv->p_vlm )
859             msg_Err( p_libvlc, "VLM initialization failed" );
860     }
861     free( psz_parser );
862 #endif
863
864     /*
865      * Load background interfaces
866      */
867     /* Create volume callback system. (this variable must be created before
868        all interfaces as they can use it) */
869     var_Create( p_libvlc, "volume-change", VLC_VAR_BOOL );
870
871     psz_modules = config_GetPsz( p_libvlc, "extraintf" );
872     psz_control = config_GetPsz( p_libvlc, "control" );
873
874     if( psz_modules && *psz_modules && psz_control && *psz_control )
875     {
876         char* psz_tmp;
877         if( asprintf( &psz_tmp, "%s:%s", psz_modules, psz_control ) != -1 )
878         {
879             free( psz_modules );
880             psz_modules = psz_tmp;
881         }
882     }
883     else if( psz_control && *psz_control )
884     {
885         free( psz_modules );
886         psz_modules = strdup( psz_control );
887     }
888
889     psz_parser = psz_modules;
890     while ( psz_parser && *psz_parser )
891     {
892         char *psz_module, *psz_temp;
893         psz_module = psz_parser;
894         psz_parser = strchr( psz_module, ':' );
895         if ( psz_parser )
896         {
897             *psz_parser = '\0';
898             psz_parser++;
899         }
900         if( asprintf( &psz_temp, "%s,none", psz_module ) != -1)
901         {
902             intf_Create( p_libvlc, psz_temp );
903             free( psz_temp );
904         }
905     }
906     free( psz_modules );
907     free( psz_control );
908
909     /*
910      * Always load the hotkeys interface if it exists
911      */
912     intf_Create( p_libvlc, "hotkeys,none" );
913
914 #ifdef HAVE_DBUS
915     /* loads dbus control interface if in one-instance mode
916      * we do it only when playlist exists, because dbus module needs it */
917     if( config_GetInt( p_libvlc, "one-instance" ) > 0
918         || ( config_GetInt( p_libvlc, "one-instance-when-started-from-file" )
919              && config_GetInt( p_libvlc, "started-from-file" ) ) )
920         intf_Create( p_libvlc, "dbus,none" );
921
922     /* Prevents the power management daemon from suspending the system
923      * when VLC is active */
924     if( config_GetInt( p_libvlc, "inhibit" ) > 0 )
925         intf_Create( p_libvlc, "inhibit,none" );
926 #endif
927
928     /*
929      * If needed, load the Xscreensaver interface
930      * Currently, only for X
931      */
932 #ifdef HAVE_X11_XLIB_H
933     if( config_GetInt( p_libvlc, "disable-screensaver" ) )
934     {
935         intf_Create( p_libvlc, "screensaver,none" );
936     }
937 #endif
938
939     if( (config_GetInt( p_libvlc, "file-logging" ) > 0) &&
940         !config_GetInt( p_libvlc, "syslog" ) )
941     {
942         intf_Create( p_libvlc, "logger,none" );
943     }
944 #ifdef HAVE_SYSLOG_H
945     if( config_GetInt( p_libvlc, "syslog" ) > 0 )
946     {
947         char *logmode = var_CreateGetString( p_libvlc, "logmode" );
948         var_SetString( p_libvlc, "logmode", "syslog" );
949         intf_Create( p_libvlc, "logger,none" );
950
951         if( logmode )
952         {
953             var_SetString( p_libvlc, "logmode", logmode );
954             free( logmode );
955         }
956         else
957             var_Destroy( p_libvlc, "logmode" );
958     }
959 #endif
960
961     if( config_GetInt( p_libvlc, "network-synchronisation") > 0 )
962     {
963         intf_Create( p_libvlc, "netsync,none" );
964     }
965
966 #ifdef WIN32
967     if( config_GetInt( p_libvlc, "prefer-system-codecs") > 0 )
968     {
969         char *psz_codecs = config_GetPsz( p_playlist, "codec" );
970         if( psz_codecs )
971         {
972             char *psz_morecodecs;
973             if( asprintf(&psz_morecodecs, "%s,dmo,quicktime", psz_codecs) != -1 )
974             {
975                 config_PutPsz( p_libvlc, "codec", psz_morecodecs);
976                 free( psz_morecodecs );
977             }
978         }
979         else
980             config_PutPsz( p_libvlc, "codec", "dmo,quicktime");
981         free( psz_codecs );
982     }
983 #endif
984
985     var_Create( p_libvlc, "drawable-view-top", VLC_VAR_INTEGER );
986     var_Create( p_libvlc, "drawable-view-left", VLC_VAR_INTEGER );
987     var_Create( p_libvlc, "drawable-view-bottom", VLC_VAR_INTEGER );
988     var_Create( p_libvlc, "drawable-view-right", VLC_VAR_INTEGER );
989     var_Create( p_libvlc, "drawable-clip-top", VLC_VAR_INTEGER );
990     var_Create( p_libvlc, "drawable-clip-left", VLC_VAR_INTEGER );
991     var_Create( p_libvlc, "drawable-clip-bottom", VLC_VAR_INTEGER );
992     var_Create( p_libvlc, "drawable-clip-right", VLC_VAR_INTEGER );
993
994
995     /* Create a variable for showing the fullscreen interface from hotkeys */
996     var_Create( p_libvlc, "intf-show", VLC_VAR_BOOL );
997     var_SetBool( p_libvlc, "intf-show", true );
998
999     /* Create a variable for showing the right click menu */
1000     var_Create( p_libvlc, "intf-popupmenu", VLC_VAR_BOOL );
1001
1002     /*
1003      * Get input filenames given as commandline arguments
1004      */
1005     GetFilenames( p_libvlc, i_argc, ppsz_argv );
1006
1007     /*
1008      * Get --open argument
1009      */
1010     var_Create( p_libvlc, "open", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
1011     var_Get( p_libvlc, "open", &val );
1012     if ( val.psz_string != NULL && *val.psz_string )
1013     {
1014         playlist_t *p_playlist = pl_Hold( p_libvlc );
1015         playlist_AddExt( p_playlist, val.psz_string, NULL, PLAYLIST_INSERT, 0,
1016                          -1, 0, NULL, 0, true, pl_Unlocked );
1017         pl_Release( p_libvlc );
1018     }
1019     free( val.psz_string );
1020
1021     return VLC_SUCCESS;
1022 }
1023
1024 /**
1025  * Cleanup a libvlc instance. The instance is not completely deallocated
1026  * \param p_libvlc the instance to clean
1027  */
1028 void libvlc_InternalCleanup( libvlc_int_t *p_libvlc )
1029 {
1030     libvlc_priv_t *priv = libvlc_priv (p_libvlc);
1031     playlist_t    *p_playlist = priv->p_playlist;
1032
1033     /* Deactivate the playlist */
1034     msg_Dbg( p_libvlc, "deactivating the playlist" );
1035     playlist_Deactivate( p_playlist );
1036
1037     /* Remove all services discovery */
1038     msg_Dbg( p_libvlc, "removing all services discovery tasks" );
1039     playlist_ServicesDiscoveryKillAll( p_playlist );
1040
1041     /* Ask the interfaces to stop and destroy them */
1042     msg_Dbg( p_libvlc, "removing all interfaces" );
1043     libvlc_Quit( p_libvlc );
1044     intf_DestroyAll( p_libvlc );
1045
1046 #ifdef ENABLE_VLM
1047     /* Destroy VLM if created in libvlc_InternalInit */
1048     if( priv->p_vlm )
1049     {
1050         vlm_Delete( priv->p_vlm );
1051     }
1052 #endif
1053
1054     /* Free playlist */
1055     /* Any thread still running must not assume pl_Hold() succeeds. */
1056     msg_Dbg( p_libvlc, "removing playlist" );
1057
1058     libvlc_priv(p_playlist->p_libvlc)->p_playlist = NULL;
1059     barrier();  /* FIXME is that correct ? */
1060
1061     vlc_object_release( p_playlist );
1062
1063     stats_TimersDumpAll( p_libvlc );
1064     stats_TimersCleanAll( p_libvlc );
1065
1066     msg_Dbg( p_libvlc, "removing stats" );
1067
1068 #ifndef WIN32
1069     char* psz_pidfile = NULL;
1070
1071     if( b_daemon )
1072     {
1073         psz_pidfile = config_GetPsz( p_libvlc, "pidfile" );
1074         if( psz_pidfile != NULL )
1075         {
1076             msg_Dbg( p_libvlc, "removing pid file %s", psz_pidfile );
1077             if( unlink( psz_pidfile ) == -1 )
1078             {
1079                 msg_Dbg( p_libvlc, "removing pid file %s: %m",
1080                         psz_pidfile );
1081             }
1082         }
1083         free( psz_pidfile );
1084     }
1085 #endif
1086
1087     if( priv->p_memcpy_module )
1088     {
1089         module_unneed( p_libvlc, priv->p_memcpy_module );
1090         priv->p_memcpy_module = NULL;
1091     }
1092
1093     /* Free module bank. It is refcounted, so we call this each time  */
1094     module_EndBank( p_libvlc, true );
1095
1096     var_DelCallback( p_libvlc, "key-pressed", vlc_key_to_action,
1097                      (void *)p_libvlc->p_hotkeys );
1098     free( (void *)p_libvlc->p_hotkeys );
1099 }
1100
1101 /**
1102  * Destroy everything.
1103  * This function requests the running threads to finish, waits for their
1104  * termination, and destroys their structure.
1105  * It stops the thread systems: no instance can run after this has run
1106  * \param p_libvlc the instance to destroy
1107  */
1108 void libvlc_InternalDestroy( libvlc_int_t *p_libvlc )
1109 {
1110     libvlc_priv_t *priv = libvlc_priv( p_libvlc );
1111
1112     vlc_mutex_lock( &global_lock );
1113     i_instances--;
1114
1115     if( i_instances == 0 )
1116     {
1117         /* System specific cleaning code */
1118         system_End( p_libvlc );
1119     }
1120     vlc_mutex_unlock( &global_lock );
1121
1122     msg_Destroy( p_libvlc );
1123
1124     /* Destroy mutexes */
1125     vlc_cond_destroy( &priv->exiting );
1126     vlc_mutex_destroy( &priv->timer_lock );
1127
1128 #ifndef NDEBUG /* Hack to dump leaked objects tree */
1129     if( vlc_internals( p_libvlc )->i_refcount > 1 )
1130         while( vlc_internals( p_libvlc )->i_refcount > 0 )
1131             vlc_object_release( p_libvlc );
1132 #endif
1133
1134     assert( vlc_internals( p_libvlc )->i_refcount == 1 );
1135     vlc_object_release( p_libvlc );
1136 }
1137
1138 /**
1139  * Add an interface plugin and run it
1140  */
1141 int libvlc_InternalAddIntf( libvlc_int_t *p_libvlc, char const *psz_module )
1142 {
1143     if( !p_libvlc )
1144         return VLC_EGENERIC;
1145
1146     if( !psz_module ) /* requesting the default interface */
1147     {
1148         char *psz_interface = config_GetPsz( p_libvlc, "intf" );
1149         if( !psz_interface || !*psz_interface ) /* "intf" has not been set */
1150         {
1151 #ifndef WIN32
1152             if( b_daemon )
1153                  /* Daemon mode hack.
1154                   * We prefer the dummy interface if none is specified. */
1155                 psz_module = "dummy";
1156             else
1157 #endif
1158                 msg_Info( p_libvlc, "%s",
1159                           _("Running vlc with the default interface. "
1160                             "Use 'cvlc' to use vlc without interface.") );
1161         }
1162         free( psz_interface );
1163     }
1164
1165     /* Try to create the interface */
1166     if( intf_Create( p_libvlc, psz_module ? psz_module : "$intf" ) )
1167     {
1168         msg_Err( p_libvlc, "interface \"%s\" initialization failed",
1169                  psz_module ? psz_module : "default" );
1170         return VLC_EGENERIC;
1171     }
1172     return VLC_SUCCESS;
1173 }
1174
1175 static vlc_mutex_t exit_lock = VLC_STATIC_MUTEX;
1176
1177 /**
1178  * Waits until the LibVLC instance gets an exit signal. Normally, this happens
1179  * when the user "exits" an interface plugin.
1180  */
1181 void libvlc_InternalWait( libvlc_int_t *p_libvlc )
1182 {
1183     libvlc_priv_t *priv = libvlc_priv( p_libvlc );
1184
1185     vlc_mutex_lock( &exit_lock );
1186     while( vlc_object_alive( p_libvlc ) )
1187         vlc_cond_wait( &priv->exiting, &exit_lock );
1188     vlc_mutex_unlock( &exit_lock );
1189 }
1190
1191 /**
1192  * Posts an exit signal to LibVLC instance. This will normally initiate the
1193  * cleanup and destroy process. It should only be called on behalf of the user.
1194  */
1195 void libvlc_Quit( libvlc_int_t *p_libvlc )
1196 {
1197     libvlc_priv_t *priv = libvlc_priv( p_libvlc );
1198
1199     vlc_mutex_lock( &exit_lock );
1200     vlc_object_kill( p_libvlc );
1201     vlc_cond_signal( &priv->exiting );
1202     vlc_mutex_unlock( &exit_lock );
1203 }
1204
1205 #if defined( ENABLE_NLS ) && (defined (__APPLE__) || defined (WIN32)) && \
1206     ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
1207 /*****************************************************************************
1208  * SetLanguage: set the interface language.
1209  *****************************************************************************
1210  * We set the LC_MESSAGES locale category for interface messages and buttons,
1211  * as well as the LC_CTYPE category for string sorting and possible wide
1212  * character support.
1213  *****************************************************************************/
1214 static void SetLanguage ( const char *psz_lang )
1215 {
1216 #ifdef __APPLE__
1217     /* I need that under Darwin, please check it doesn't disturb
1218      * other platforms. --Meuuh */
1219     setenv( "LANG", psz_lang, 1 );
1220
1221 #else
1222     /* We set LC_ALL manually because it is the only way to set
1223      * the language at runtime under eg. Windows. Beware that this
1224      * makes the environment unconsistent when libvlc is unloaded and
1225      * should probably be moved to a safer place like vlc.c. */
1226     static char psz_lcall[20];
1227     snprintf( psz_lcall, 19, "LC_ALL=%s", psz_lang );
1228     psz_lcall[19] = '\0';
1229     putenv( psz_lcall );
1230 #endif
1231
1232     setlocale( LC_ALL, psz_lang );
1233 }
1234 #endif
1235
1236
1237 static inline int LoadMessages (void)
1238 {
1239 #if defined( ENABLE_NLS ) \
1240      && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
1241     /* Specify where to find the locales for current domain */
1242 #if !defined( __APPLE__ ) && !defined( WIN32 ) && !defined( SYS_BEOS )
1243     static const char psz_path[] = LOCALEDIR;
1244 #else
1245     char psz_path[1024];
1246     if (snprintf (psz_path, sizeof (psz_path), "%s" DIR_SEP "%s",
1247                   config_GetDataDir(), "locale")
1248                      >= (int)sizeof (psz_path))
1249         return -1;
1250
1251 #endif
1252     if (bindtextdomain (PACKAGE_NAME, psz_path) == NULL)
1253     {
1254         fprintf (stderr, "Warning: cannot bind text domain "PACKAGE_NAME
1255                          " to directory %s\n", psz_path);
1256         return -1;
1257     }
1258
1259     /* LibVLC wants all messages in UTF-8.
1260      * Unfortunately, we cannot ask UTF-8 for strerror_r(), strsignal_r()
1261      * and other functions that are not part of our text domain.
1262      */
1263     if (bind_textdomain_codeset (PACKAGE_NAME, "UTF-8") == NULL)
1264     {
1265         fprintf (stderr, "Error: cannot set Unicode encoding for text domain "
1266                          PACKAGE_NAME"\n");
1267         // Unbinds the text domain to avoid broken encoding
1268         bindtextdomain (PACKAGE_NAME, "DOES_NOT_EXIST");
1269         return -1;
1270     }
1271
1272     /* LibVLC does NOT set the default textdomain, since it is a library.
1273      * This could otherwise break programs using LibVLC (other than VLC).
1274      * textdomain (PACKAGE_NAME);
1275      */
1276 #endif
1277     return 0;
1278 }
1279
1280 /*****************************************************************************
1281  * GetFilenames: parse command line options which are not flags
1282  *****************************************************************************
1283  * Parse command line for input files as well as their associated options.
1284  * An option always follows its associated input and begins with a ":".
1285  *****************************************************************************/
1286 static int GetFilenames( libvlc_int_t *p_vlc, int i_argc, const char *ppsz_argv[] )
1287 {
1288     int i_opt, i_options;
1289
1290     /* We assume that the remaining parameters are filenames
1291      * and their input options */
1292     for( i_opt = i_argc - 1; i_opt >= optind; i_opt-- )
1293     {
1294         i_options = 0;
1295
1296         /* Count the input options */
1297         while( *ppsz_argv[ i_opt ] == ':' && i_opt > optind )
1298         {
1299             i_options++;
1300             i_opt--;
1301         }
1302
1303         /* TODO: write an internal function of this one, to avoid
1304          *       unnecessary lookups. */
1305
1306         playlist_t *p_playlist = pl_Hold( p_vlc );
1307         playlist_AddExt( p_playlist, ppsz_argv[i_opt], NULL, PLAYLIST_INSERT,
1308                          0, -1,
1309                          i_options, ( i_options ? &ppsz_argv[i_opt + 1] : NULL ), VLC_INPUT_OPTION_TRUSTED,
1310                          true, pl_Unlocked );
1311         pl_Release( p_vlc );
1312     }
1313
1314     return VLC_SUCCESS;
1315 }
1316
1317 /*****************************************************************************
1318  * Help: print program help
1319  *****************************************************************************
1320  * Print a short inline help. Message interface is initialized at this stage.
1321  *****************************************************************************/
1322 static inline void print_help_on_full_help( void )
1323 {
1324     utf8_fprintf( stdout, "\n" );
1325     utf8_fprintf( stdout, "%s\n", _("To get exhaustive help, use '-H'.") );
1326 }
1327
1328 static const char vlc_usage[] = N_(
1329                             "Usage: %s [options] [stream] ..."
1330                             "\nYou can specify multiple streams on the commandline. They will be enqueued in the playlist."
1331                             "\nThe first item specified will be played first."
1332                             "\n"
1333                             "\nOptions-styles:"
1334                             "\n  --option  A global option that is set for the duration of the program."
1335                             "\n   -option  A single letter version of a global --option."
1336                             "\n   :option  An option that only applies to the stream directly before it"
1337                             "\n            and that overrides previous settings."
1338                             "\n"
1339                             "\nStream MRL syntax:"
1340                             "\n  [[access][/demux]://]URL[@[title][:chapter][-[title][:chapter]]] [:option=value ...]"
1341                             "\n"
1342                             "\n  Many of the global --options can also be used as MRL specific :options."
1343                             "\n  Multiple :option=value pairs can be specified."
1344                             "\n"
1345                             "\nURL syntax:"
1346                             "\n  [file://]filename              Plain media file"
1347                             "\n  http://ip:port/file            HTTP URL"
1348                             "\n  ftp://ip:port/file             FTP URL"
1349                             "\n  mms://ip:port/file             MMS URL"
1350                             "\n  screen://                      Screen capture"
1351                             "\n  [dvd://][device][@raw_device]  DVD device"
1352                             "\n  [vcd://][device]               VCD device"
1353                             "\n  [cdda://][device]              Audio CD device"
1354                             "\n  udp://[[<source address>]@[<bind address>][:<bind port>]]"
1355                             "\n                                 UDP stream sent by a streaming server"
1356                             "\n  vlc://pause:<seconds>          Special item to pause the playlist for a certain time"
1357                             "\n  vlc://quit                     Special item to quit VLC"
1358                             "\n");
1359
1360 static void Help( libvlc_int_t *p_this, char const *psz_help_name )
1361 {
1362 #ifdef WIN32
1363     ShowConsole( true );
1364 #endif
1365
1366     if( psz_help_name && !strcmp( psz_help_name, "help" ) )
1367     {
1368         utf8_fprintf( stdout, vlc_usage, "vlc" );
1369         Usage( p_this, "=help" );
1370         Usage( p_this, "=main" );
1371         print_help_on_full_help();
1372     }
1373     else if( psz_help_name && !strcmp( psz_help_name, "longhelp" ) )
1374     {
1375         utf8_fprintf( stdout, vlc_usage, "vlc" );
1376         Usage( p_this, NULL );
1377         print_help_on_full_help();
1378     }
1379     else if( psz_help_name && !strcmp( psz_help_name, "full-help" ) )
1380     {
1381         utf8_fprintf( stdout, vlc_usage, "vlc" );
1382         Usage( p_this, NULL );
1383     }
1384     else if( psz_help_name )
1385     {
1386         Usage( p_this, psz_help_name );
1387     }
1388
1389 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1390     PauseConsole();
1391 #endif
1392 }
1393
1394 /*****************************************************************************
1395  * Usage: print module usage
1396  *****************************************************************************
1397  * Print a short inline help. Message interface is initialized at this stage.
1398  *****************************************************************************/
1399 #   define COL(x)  "\033[" #x ";1m"
1400 #   define RED     COL(31)
1401 #   define GREEN   COL(32)
1402 #   define YELLOW  COL(33)
1403 #   define BLUE    COL(34)
1404 #   define MAGENTA COL(35)
1405 #   define CYAN    COL(36)
1406 #   define WHITE   COL(0)
1407 #   define GRAY    "\033[0m"
1408 static void print_help_section( module_config_t *p_item, bool b_color, bool b_description )
1409 {
1410     if( !p_item ) return;
1411     if( b_color )
1412     {
1413         utf8_fprintf( stdout, RED"   %s:\n"GRAY,
1414                       p_item->psz_text );
1415         if( b_description && p_item->psz_longtext )
1416             utf8_fprintf( stdout, MAGENTA"   %s\n"GRAY,
1417                           p_item->psz_longtext );
1418     }
1419     else
1420     {
1421         utf8_fprintf( stdout, "   %s:\n", p_item->psz_text );
1422         if( b_description && p_item->psz_longtext )
1423             utf8_fprintf( stdout, "   %s\n", p_item->psz_longtext );
1424     }
1425 }
1426
1427 static void Usage( libvlc_int_t *p_this, char const *psz_search )
1428 {
1429 #define FORMAT_STRING "  %s --%s%s%s%s%s%s%s "
1430     /* short option ------'    | | | | | | |
1431      * option name ------------' | | | | | |
1432      * <bra ---------------------' | | | | |
1433      * option type or "" ----------' | | | |
1434      * ket> -------------------------' | | |
1435      * padding spaces -----------------' | |
1436      * comment --------------------------' |
1437      * comment suffix ---------------------'
1438      *
1439      * The purpose of having bra and ket is that we might i18n them as well.
1440      */
1441
1442 #define COLOR_FORMAT_STRING (WHITE"  %s --%s"YELLOW"%s%s%s%s%s%s "GRAY)
1443 #define COLOR_FORMAT_STRING_BOOL (WHITE"  %s --%s%s%s%s%s%s%s "GRAY)
1444
1445 #define LINE_START 8
1446 #define PADDING_SPACES 25
1447 #ifdef WIN32
1448 #   define OPTION_VALUE_SEP "="
1449 #else
1450 #   define OPTION_VALUE_SEP " "
1451 #endif
1452     char psz_spaces_text[PADDING_SPACES+LINE_START+1];
1453     char psz_spaces_longtext[LINE_START+3];
1454     char psz_format[sizeof(COLOR_FORMAT_STRING)];
1455     char psz_format_bool[sizeof(COLOR_FORMAT_STRING_BOOL)];
1456     char psz_buffer[10000];
1457     char psz_short[4];
1458     int i_width = ConsoleWidth() - (PADDING_SPACES+LINE_START+1);
1459     int i_width_description = i_width + PADDING_SPACES - 1;
1460     bool b_advanced    = config_GetInt( p_this, "advanced" ) > 0;
1461     bool b_description = config_GetInt( p_this, "help-verbose" ) > 0;
1462     bool b_description_hack;
1463     bool b_color       = config_GetInt( p_this, "color" ) > 0;
1464     bool b_has_advanced = false;
1465     bool b_found       = false;
1466     int  i_only_advanced = 0; /* Number of modules ignored because they
1467                                * only have advanced options */
1468     bool b_strict = psz_search && *psz_search == '=';
1469     if( b_strict ) psz_search++;
1470
1471     memset( psz_spaces_text, ' ', PADDING_SPACES+LINE_START );
1472     psz_spaces_text[PADDING_SPACES+LINE_START] = '\0';
1473     memset( psz_spaces_longtext, ' ', LINE_START+2 );
1474     psz_spaces_longtext[LINE_START+2] = '\0';
1475 #ifndef WIN32
1476     if( !isatty( 1 ) )
1477 #endif
1478         b_color = false; // don't put color control codes in a .txt file
1479
1480     if( b_color )
1481     {
1482         strcpy( psz_format, COLOR_FORMAT_STRING );
1483         strcpy( psz_format_bool, COLOR_FORMAT_STRING_BOOL );
1484     }
1485     else
1486     {
1487         strcpy( psz_format, FORMAT_STRING );
1488         strcpy( psz_format_bool, FORMAT_STRING );
1489     }
1490
1491     /* List all modules */
1492     module_t **list = module_list_get (NULL);
1493     if (!list)
1494         return;
1495
1496     /* Ugly hack to make sure that the help options always come first
1497      * (part 1) */
1498     if( !psz_search )
1499         Usage( p_this, "help" );
1500
1501     /* Enumerate the config for each module */
1502     for (size_t i = 0; list[i]; i++)
1503     {
1504         bool b_help_module;
1505         module_t *p_parser = list[i];
1506         module_config_t *p_item = NULL;
1507         module_config_t *p_section = NULL;
1508         module_config_t *p_end = p_parser->p_config + p_parser->confsize;
1509
1510         if( psz_search &&
1511             ( b_strict ? strcmp( psz_search, p_parser->psz_object_name )
1512                        : !strstr( p_parser->psz_object_name, psz_search ) ) )
1513         {
1514             char *const *pp_shortcut = p_parser->pp_shortcuts;
1515             while( *pp_shortcut )
1516             {
1517                 if( b_strict ? !strcmp( psz_search, *pp_shortcut )
1518                              : !!strstr( *pp_shortcut, psz_search ) )
1519                     break;
1520                 pp_shortcut ++;
1521             }
1522             if( !*pp_shortcut )
1523                 continue;
1524         }
1525
1526         /* Ignore modules without config options */
1527         if( !p_parser->i_config_items )
1528         {
1529             continue;
1530         }
1531
1532         b_help_module = !strcmp( "help", p_parser->psz_object_name );
1533         /* Ugly hack to make sure that the help options always come first
1534          * (part 2) */
1535         if( !psz_search && b_help_module )
1536             continue;
1537
1538         /* Ignore modules with only advanced config options if requested */
1539         if( !b_advanced )
1540         {
1541             for( p_item = p_parser->p_config;
1542                  p_item < p_end;
1543                  p_item++ )
1544             {
1545                 if( (p_item->i_type & CONFIG_ITEM) &&
1546                     !p_item->b_advanced && !p_item->b_removed ) break;
1547             }
1548
1549             if( p_item == p_end )
1550             {
1551                 i_only_advanced++;
1552                 continue;
1553             }
1554         }
1555
1556         b_found = true;
1557
1558         /* Print name of module */
1559         if( strcmp( "main", p_parser->psz_object_name ) )
1560         {
1561             if( b_color )
1562                 utf8_fprintf( stdout, "\n " GREEN "%s" GRAY " (%s)\n",
1563                               p_parser->psz_longname,
1564                                p_parser->psz_object_name );
1565             else
1566                 utf8_fprintf( stdout, "\n %s\n", p_parser->psz_longname );
1567         }
1568         if( p_parser->psz_help )
1569         {
1570             if( b_color )
1571                 utf8_fprintf( stdout, CYAN" %s\n"GRAY, p_parser->psz_help );
1572             else
1573                 utf8_fprintf( stdout, " %s\n", p_parser->psz_help );
1574         }
1575
1576         /* Print module options */
1577         for( p_item = p_parser->p_config;
1578              p_item < p_end;
1579              p_item++ )
1580         {
1581             char *psz_text, *psz_spaces = psz_spaces_text;
1582             const char *psz_bra = NULL, *psz_type = NULL, *psz_ket = NULL;
1583             const char *psz_suf = "", *psz_prefix = NULL;
1584             signed int i;
1585             size_t i_cur_width;
1586
1587             /* Skip removed options */
1588             if( p_item->b_removed )
1589             {
1590                 continue;
1591             }
1592             /* Skip advanced options if requested */
1593             if( p_item->b_advanced && !b_advanced )
1594             {
1595                 b_has_advanced = true;
1596                 continue;
1597             }
1598
1599             switch( p_item->i_type )
1600             {
1601             case CONFIG_HINT_CATEGORY:
1602             case CONFIG_HINT_USAGE:
1603                 if( !strcmp( "main", p_parser->psz_object_name ) )
1604                 {
1605                     if( b_color )
1606                         utf8_fprintf( stdout, GREEN "\n %s\n" GRAY,
1607                                       p_item->psz_text );
1608                     else
1609                         utf8_fprintf( stdout, "\n %s\n", p_item->psz_text );
1610                 }
1611                 if( b_description && p_item->psz_longtext )
1612                 {
1613                     if( b_color )
1614                         utf8_fprintf( stdout, CYAN " %s\n" GRAY,
1615                                       p_item->psz_longtext );
1616                     else
1617                         utf8_fprintf( stdout, " %s\n", p_item->psz_longtext );
1618                 }
1619                 break;
1620
1621             case CONFIG_HINT_SUBCATEGORY:
1622                 if( strcmp( "main", p_parser->psz_object_name ) )
1623                     break;
1624             case CONFIG_SECTION:
1625                 p_section = p_item;
1626                 break;
1627
1628             case CONFIG_ITEM_STRING:
1629             case CONFIG_ITEM_FILE:
1630             case CONFIG_ITEM_DIRECTORY:
1631             case CONFIG_ITEM_MODULE: /* We could also have "=<" here */
1632             case CONFIG_ITEM_MODULE_CAT:
1633             case CONFIG_ITEM_MODULE_LIST:
1634             case CONFIG_ITEM_MODULE_LIST_CAT:
1635             case CONFIG_ITEM_FONT:
1636             case CONFIG_ITEM_PASSWORD:
1637                 print_help_section( p_section, b_color, b_description );
1638                 p_section = NULL;
1639                 psz_bra = OPTION_VALUE_SEP "<";
1640                 psz_type = _("string");
1641                 psz_ket = ">";
1642
1643                 if( p_item->ppsz_list )
1644                 {
1645                     psz_bra = OPTION_VALUE_SEP "{";
1646                     psz_type = psz_buffer;
1647                     psz_buffer[0] = '\0';
1648                     for( i = 0; p_item->ppsz_list[i]; i++ )
1649                     {
1650                         if( i ) strcat( psz_buffer, "," );
1651                         strcat( psz_buffer, p_item->ppsz_list[i] );
1652                     }
1653                     psz_ket = "}";
1654                 }
1655                 break;
1656             case CONFIG_ITEM_INTEGER:
1657             case CONFIG_ITEM_KEY: /* FIXME: do something a bit more clever */
1658                 print_help_section( p_section, b_color, b_description );
1659                 p_section = NULL;
1660                 psz_bra = OPTION_VALUE_SEP "<";
1661                 psz_type = _("integer");
1662                 psz_ket = ">";
1663
1664                 if( p_item->min.i || p_item->max.i )
1665                 {
1666                     sprintf( psz_buffer, "%s [%i .. %i]", psz_type,
1667                              p_item->min.i, p_item->max.i );
1668                     psz_type = psz_buffer;
1669                 }
1670
1671                 if( p_item->i_list )
1672                 {
1673                     psz_bra = OPTION_VALUE_SEP "{";
1674                     psz_type = psz_buffer;
1675                     psz_buffer[0] = '\0';
1676                     for( i = 0; p_item->ppsz_list_text[i]; i++ )
1677                     {
1678                         if( i ) strcat( psz_buffer, ", " );
1679                         sprintf( psz_buffer + strlen(psz_buffer), "%i (%s)",
1680                                  p_item->pi_list[i],
1681                                  p_item->ppsz_list_text[i] );
1682                     }
1683                     psz_ket = "}";
1684                 }
1685                 break;
1686             case CONFIG_ITEM_FLOAT:
1687                 print_help_section( p_section, b_color, b_description );
1688                 p_section = NULL;
1689                 psz_bra = OPTION_VALUE_SEP "<";
1690                 psz_type = _("float");
1691                 psz_ket = ">";
1692                 if( p_item->min.f || p_item->max.f )
1693                 {
1694                     sprintf( psz_buffer, "%s [%f .. %f]", psz_type,
1695                              p_item->min.f, p_item->max.f );
1696                     psz_type = psz_buffer;
1697                 }
1698                 break;
1699             case CONFIG_ITEM_BOOL:
1700                 print_help_section( p_section, b_color, b_description );
1701                 p_section = NULL;
1702                 psz_bra = ""; psz_type = ""; psz_ket = "";
1703                 if( !b_help_module )
1704                 {
1705                     psz_suf = p_item->value.i ? _(" (default enabled)") :
1706                                                 _(" (default disabled)");
1707                 }
1708                 break;
1709             }
1710
1711             if( !psz_type )
1712             {
1713                 continue;
1714             }
1715
1716             /* Add short option if any */
1717             if( p_item->i_short )
1718             {
1719                 sprintf( psz_short, "-%c,", p_item->i_short );
1720             }
1721             else
1722             {
1723                 strcpy( psz_short, "   " );
1724             }
1725
1726             i = PADDING_SPACES - strlen( p_item->psz_name )
1727                  - strlen( psz_bra ) - strlen( psz_type )
1728                  - strlen( psz_ket ) - 1;
1729
1730             if( p_item->i_type == CONFIG_ITEM_BOOL && !b_help_module )
1731             {
1732                 psz_prefix =  ", --no-";
1733                 i -= strlen( p_item->psz_name ) + strlen( psz_prefix );
1734             }
1735
1736             if( i < 0 )
1737             {
1738                 psz_spaces[0] = '\n';
1739                 i = 0;
1740             }
1741             else
1742             {
1743                 psz_spaces[i] = '\0';
1744             }
1745
1746             if( p_item->i_type == CONFIG_ITEM_BOOL && !b_help_module )
1747             {
1748                 utf8_fprintf( stdout, psz_format_bool, psz_short,
1749                               p_item->psz_name, psz_prefix, p_item->psz_name,
1750                               psz_bra, psz_type, psz_ket, psz_spaces );
1751             }
1752             else
1753             {
1754                 utf8_fprintf( stdout, psz_format, psz_short, p_item->psz_name,
1755                          "", "", psz_bra, psz_type, psz_ket, psz_spaces );
1756             }
1757
1758             psz_spaces[i] = ' ';
1759
1760             /* We wrap the rest of the output */
1761             sprintf( psz_buffer, "%s%s", p_item->psz_text, psz_suf );
1762             b_description_hack = b_description;
1763
1764  description:
1765             psz_text = psz_buffer;
1766             i_cur_width = b_description && !b_description_hack
1767                           ? i_width_description
1768                           : i_width;
1769             while( *psz_text )
1770             {
1771                 char *psz_parser, *psz_word;
1772                 size_t i_end = strlen( psz_text );
1773
1774                 /* If the remaining text fits in a line, print it. */
1775                 if( i_end <= i_cur_width )
1776                 {
1777                     if( b_color )
1778                     {
1779                         if( !b_description || b_description_hack )
1780                             utf8_fprintf( stdout, BLUE"%s\n"GRAY, psz_text );
1781                         else
1782                             utf8_fprintf( stdout, "%s\n", psz_text );
1783                     }
1784                     else
1785                     {
1786                         utf8_fprintf( stdout, "%s\n", psz_text );
1787                     }
1788                     break;
1789                 }
1790
1791                 /* Otherwise, eat as many words as possible */
1792                 psz_parser = psz_text;
1793                 do
1794                 {
1795                     psz_word = psz_parser;
1796                     psz_parser = strchr( psz_word, ' ' );
1797                     /* If no space was found, we reached the end of the text
1798                      * block; otherwise, we skip the space we just found. */
1799                     psz_parser = psz_parser ? psz_parser + 1
1800                                             : psz_text + i_end;
1801
1802                 } while( (size_t)(psz_parser - psz_text) <= i_cur_width );
1803
1804                 /* We cut a word in one of these cases:
1805                  *  - it's the only word in the line and it's too long.
1806                  *  - we used less than 80% of the width and the word we are
1807                  *    going to wrap is longer than 40% of the width, and even
1808                  *    if the word would have fit in the next line. */
1809                 if( psz_word == psz_text
1810              || ( (size_t)(psz_word - psz_text) < 80 * i_cur_width / 100
1811              && (size_t)(psz_parser - psz_word) > 40 * i_cur_width / 100 ) )
1812                 {
1813                     char c = psz_text[i_cur_width];
1814                     psz_text[i_cur_width] = '\0';
1815                     if( b_color )
1816                     {
1817                         if( !b_description || b_description_hack )
1818                             utf8_fprintf( stdout, BLUE"%s\n%s"GRAY,
1819                                           psz_text, psz_spaces );
1820                         else
1821                             utf8_fprintf( stdout, "%s\n%s",
1822                                           psz_text, psz_spaces );
1823                     }
1824                     else
1825                     {
1826                         utf8_fprintf( stdout, "%s\n%s", psz_text, psz_spaces );
1827                     }
1828                     psz_text += i_cur_width;
1829                     psz_text[0] = c;
1830                 }
1831                 else
1832                 {
1833                     psz_word[-1] = '\0';
1834                     if( b_color )
1835                     {
1836                         if( !b_description || b_description_hack )
1837                             utf8_fprintf( stdout, BLUE"%s\n%s"GRAY,
1838                                           psz_text, psz_spaces );
1839                         else
1840                             utf8_fprintf( stdout, "%s\n%s",
1841                                           psz_text, psz_spaces );
1842                     }
1843                     else
1844                     {
1845                         utf8_fprintf( stdout, "%s\n%s", psz_text, psz_spaces );
1846                     }
1847                     psz_text = psz_word;
1848                 }
1849             }
1850
1851             if( b_description_hack && p_item->psz_longtext )
1852             {
1853                 sprintf( psz_buffer, "%s%s", p_item->psz_longtext, psz_suf );
1854                 b_description_hack = false;
1855                 psz_spaces = psz_spaces_longtext;
1856                 utf8_fprintf( stdout, "%s", psz_spaces );
1857                 goto description;
1858             }
1859         }
1860     }
1861
1862     if( b_has_advanced )
1863     {
1864         if( b_color )
1865             utf8_fprintf( stdout, "\n" WHITE "%s" GRAY " %s\n", _( "Note:" ),
1866            _( "add --advanced to your command line to see advanced options."));
1867         else
1868             utf8_fprintf( stdout, "\n%s %s\n", _( "Note:" ),
1869            _( "add --advanced to your command line to see advanced options."));
1870     }
1871
1872     if( i_only_advanced > 0 )
1873     {
1874         if( b_color )
1875         {
1876             utf8_fprintf( stdout, "\n" WHITE "%s" GRAY " ", _( "Note:" ) );
1877             utf8_fprintf( stdout, _( "%d module(s) were not displayed because they only have advanced options.\n" ), i_only_advanced );
1878         }
1879         else
1880         {
1881             utf8_fprintf( stdout, "\n%s ", _( "Note:" ) );
1882             utf8_fprintf( stdout, _( "%d module(s) were not displayed because they only have advanced options.\n" ), i_only_advanced );
1883         }
1884     }
1885     else if( !b_found )
1886     {
1887         if( b_color )
1888             utf8_fprintf( stdout, "\n" WHITE "%s" GRAY "\n",
1889                        _( "No matching module found. Use --list or " \
1890                           "--list-verbose to list available modules." ) );
1891         else
1892             utf8_fprintf( stdout, "\n%s\n",
1893                        _( "No matching module found. Use --list or " \
1894                           "--list-verbose to list available modules." ) );
1895     }
1896
1897     /* Release the module list */
1898     module_list_free (list);
1899 }
1900
1901 /*****************************************************************************
1902  * ListModules: list the available modules with their description
1903  *****************************************************************************
1904  * Print a list of all available modules (builtins and plugins) and a short
1905  * description for each one.
1906  *****************************************************************************/
1907 static void ListModules( libvlc_int_t *p_this, bool b_verbose )
1908 {
1909     module_t *p_parser;
1910     char psz_spaces[22];
1911
1912     bool b_color = config_GetInt( p_this, "color" ) > 0;
1913
1914     memset( psz_spaces, ' ', 22 );
1915
1916 #ifdef WIN32
1917     ShowConsole( true );
1918 #endif
1919
1920     /* List all modules */
1921     module_t **list = module_list_get (NULL);
1922
1923     /* Enumerate each module */
1924     for (size_t j = 0; (p_parser = list[j]) != NULL; j++)
1925     {
1926         int i;
1927
1928         /* Nasty hack, but right now I'm too tired to think about a nice
1929          * solution */
1930         i = 22 - strlen( p_parser->psz_object_name ) - 1;
1931         if( i < 0 ) i = 0;
1932         psz_spaces[i] = 0;
1933
1934         if( b_color )
1935             utf8_fprintf( stdout, GREEN"  %s%s "WHITE"%s\n"GRAY,
1936                           p_parser->psz_object_name,
1937                           psz_spaces,
1938                           p_parser->psz_longname );
1939         else
1940             utf8_fprintf( stdout, "  %s%s %s\n",
1941                           p_parser->psz_object_name,
1942                           psz_spaces, p_parser->psz_longname );
1943
1944         if( b_verbose )
1945         {
1946             char *const *pp_shortcut = p_parser->pp_shortcuts;
1947             while( *pp_shortcut )
1948             {
1949                 if( strcmp( *pp_shortcut, p_parser->psz_object_name ) )
1950                 {
1951                     if( b_color )
1952                         utf8_fprintf( stdout, CYAN"   s %s\n"GRAY,
1953                                       *pp_shortcut );
1954                     else
1955                         utf8_fprintf( stdout, "   s %s\n",
1956                                       *pp_shortcut );
1957                 }
1958                 pp_shortcut++;
1959             }
1960             if( p_parser->psz_capability )
1961             {
1962                 if( b_color )
1963                     utf8_fprintf( stdout, MAGENTA"   c %s (%d)\n"GRAY,
1964                                   p_parser->psz_capability,
1965                                   p_parser->i_score );
1966                 else
1967                     utf8_fprintf( stdout, "   c %s (%d)\n",
1968                                   p_parser->psz_capability,
1969                                   p_parser->i_score );
1970             }
1971         }
1972
1973         psz_spaces[i] = ' ';
1974     }
1975     module_list_free (list);
1976
1977 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1978     PauseConsole();
1979 #endif
1980 }
1981
1982 /*****************************************************************************
1983  * Version: print complete program version
1984  *****************************************************************************
1985  * Print complete program version and build number.
1986  *****************************************************************************/
1987 static void Version( void )
1988 {
1989     extern const char psz_vlc_changeset[];
1990 #ifdef WIN32
1991     ShowConsole( true );
1992 #endif
1993
1994     utf8_fprintf( stdout, _("VLC version %s (%s)\n"), VLC_Version(),
1995                   psz_vlc_changeset );
1996     utf8_fprintf( stdout, _("Compiled by %s@%s.%s\n"),
1997              VLC_CompileBy(), VLC_CompileHost(), VLC_CompileDomain() );
1998     utf8_fprintf( stdout, _("Compiler: %s\n"), VLC_Compiler() );
1999     utf8_fprintf( stdout, "%s", LICENSE_MSG );
2000
2001 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
2002     PauseConsole();
2003 #endif
2004 }
2005
2006 /*****************************************************************************
2007  * ShowConsole: On Win32, create an output console for debug messages
2008  *****************************************************************************
2009  * This function is useful only on Win32.
2010  *****************************************************************************/
2011 #ifdef WIN32 /*  */
2012 static void ShowConsole( bool b_dofile )
2013 {
2014 #   ifndef UNDER_CE
2015     FILE *f_help = NULL;
2016
2017     if( getenv( "PWD" ) && getenv( "PS1" ) ) return; /* cygwin shell */
2018
2019     AllocConsole();
2020     /* Use the ANSI code page (e.g. Windows-1252) as expected by the LibVLC
2021      * Unicode/locale subsystem. By default, we have the obsolecent OEM code
2022      * page (e.g. CP437 or CP850). */
2023     SetConsoleOutputCP (GetACP ());
2024     SetConsoleTitle ("VLC media player version "PACKAGE_VERSION);
2025
2026     freopen( "CONOUT$", "w", stderr );
2027     freopen( "CONIN$", "r", stdin );
2028
2029     if( b_dofile && (f_help = fopen( "vlc-help.txt", "wt" )) )
2030     {
2031         fclose( f_help );
2032         freopen( "vlc-help.txt", "wt", stdout );
2033         utf8_fprintf( stderr, _("\nDumped content to vlc-help.txt file.\n") );
2034     }
2035     else freopen( "CONOUT$", "w", stdout );
2036
2037 #   endif
2038 }
2039 #endif
2040
2041 /*****************************************************************************
2042  * PauseConsole: On Win32, wait for a key press before closing the console
2043  *****************************************************************************
2044  * This function is useful only on Win32.
2045  *****************************************************************************/
2046 #ifdef WIN32 /*  */
2047 static void PauseConsole( void )
2048 {
2049 #   ifndef UNDER_CE
2050
2051     if( getenv( "PWD" ) && getenv( "PS1" ) ) return; /* cygwin shell */
2052
2053     utf8_fprintf( stderr, _("\nPress the RETURN key to continue...\n") );
2054     getchar();
2055     fclose( stdout );
2056
2057 #   endif
2058 }
2059 #endif
2060
2061 /*****************************************************************************
2062  * ConsoleWidth: Return the console width in characters
2063  *****************************************************************************
2064  * We use the stty shell command to get the console width; if this fails or
2065  * if the width is less than 80, we default to 80.
2066  *****************************************************************************/
2067 static int ConsoleWidth( void )
2068 {
2069     unsigned i_width = 80;
2070
2071 #ifndef WIN32
2072     FILE *file = popen( "stty size 2>/dev/null", "r" );
2073     if (file != NULL)
2074     {
2075         if (fscanf (file, "%*u %u", &i_width) <= 0)
2076             i_width = 80;
2077         pclose( file );
2078     }
2079 #elif !defined (UNDER_CE)
2080     CONSOLE_SCREEN_BUFFER_INFO buf;
2081
2082     if (GetConsoleScreenBufferInfo (GetStdHandle (STD_OUTPUT_HANDLE), &buf))
2083         i_width = buf.dwSize.X;
2084 #endif
2085
2086     return i_width;
2087 }
2088
2089 /*****************************************************************************
2090  * InitDeviceValues: initialize device values
2091  *****************************************************************************
2092  * This function inits the dvd, vcd and cd-audio values
2093  *****************************************************************************/
2094 static void InitDeviceValues( libvlc_int_t *p_vlc )
2095 {
2096 #ifdef HAVE_HAL
2097     LibHalContext * ctx = NULL;
2098     int i, i_devices;
2099     char **devices = NULL;
2100     char *block_dev = NULL;
2101     dbus_bool_t b_dvd;
2102
2103     DBusConnection *p_connection = NULL;
2104     DBusError       error;
2105
2106     ctx = libhal_ctx_new();
2107     if( !ctx ) return;
2108     dbus_error_init( &error );
2109     p_connection = dbus_bus_get ( DBUS_BUS_SYSTEM, &error );
2110     if( dbus_error_is_set( &error ) || !p_connection )
2111     {
2112         libhal_ctx_free( ctx );
2113         dbus_error_free( &error );
2114         return;
2115     }
2116     libhal_ctx_set_dbus_connection( ctx, p_connection );
2117     if( libhal_ctx_init( ctx, &error ) )
2118     {
2119         if( ( devices = libhal_get_all_devices( ctx, &i_devices, NULL ) ) )
2120         {
2121             for( i = 0; i < i_devices; i++ )
2122             {
2123                 if( !libhal_device_property_exists( ctx, devices[i],
2124                                                 "storage.cdrom.dvd", NULL ) )
2125                 {
2126                     continue;
2127                 }
2128                 b_dvd = libhal_device_get_property_bool( ctx, devices[ i ],
2129                                                  "storage.cdrom.dvd", NULL  );
2130                 block_dev = libhal_device_get_property_string( ctx,
2131                                 devices[ i ], "block.device" , NULL );
2132                 if( b_dvd )
2133                 {
2134                     config_PutPsz( p_vlc, "dvd", block_dev );
2135                 }
2136
2137                 config_PutPsz( p_vlc, "vcd", block_dev );
2138                 config_PutPsz( p_vlc, "cd-audio", block_dev );
2139                 libhal_free_string( block_dev );
2140             }
2141             libhal_free_string_array( devices );
2142         }
2143         libhal_ctx_shutdown( ctx, NULL );
2144         dbus_connection_unref( p_connection );
2145         libhal_ctx_free( ctx );
2146     }
2147     else
2148     {
2149         msg_Warn( p_vlc, "Unable to get HAL device properties" );
2150     }
2151 #else
2152     (void)p_vlc;
2153 #endif /* HAVE_HAL */
2154 }
2155
2156 #include <vlc_avcodec.h>
2157
2158 void vlc_avcodec_mutex (bool acquire)
2159 {
2160     static vlc_mutex_t lock = VLC_STATIC_MUTEX;
2161
2162     if (acquire)
2163         vlc_mutex_lock (&lock);
2164     else
2165         vlc_mutex_unlock (&lock);
2166 }