]> git.sesse.net Git - vlc/blob - src/libvlc.c
(p?)gettext -> vlc_\1gettext
[vlc] / src / libvlc.c
1 /*****************************************************************************
2  * libvlc.c: libvlc instances creation and deletion, interfaces handling
3  *****************************************************************************
4  * Copyright (C) 1998-2008 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Vincent Seguin <seguin@via.ecp.fr>
8  *          Samuel Hocevar <sam@zoy.org>
9  *          Gildas Bazin <gbazin@videolan.org>
10  *          Derk-Jan Hartman <hartman at videolan dot org>
11  *          RĂ©mi Denis-Courmont <rem # videolan : org>
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
26  *****************************************************************************/
27
28 /** \file
29  * This file contains functions to create and destroy libvlc instances
30  */
31
32 /*****************************************************************************
33  * Preamble
34  *****************************************************************************/
35 #ifdef HAVE_CONFIG_H
36 # include "config.h"
37 #endif
38
39 #include <vlc_common.h>
40 #include "control/libvlc_internal.h"
41 #include <vlc_input.h>
42
43 #include "modules/modules.h"
44 #include "config/configuration.h"
45
46 #include <errno.h>                                                 /* ENOMEM */
47 #include <stdio.h>                                              /* sprintf() */
48 #include <string.h>
49 #include <stdlib.h>                                                /* free() */
50
51 #ifndef WIN32
52 #   include <netinet/in.h>                            /* BSD: struct in_addr */
53 #endif
54
55 #ifdef HAVE_UNISTD_H
56 #   include <unistd.h>
57 #elif defined( WIN32 ) && !defined( UNDER_CE )
58 #   include <io.h>
59 #endif
60
61 #ifdef WIN32                       /* optind, getopt(), included in unistd.h */
62 #   include "extras/getopt.h"
63 #endif
64
65 #ifdef HAVE_LOCALE_H
66 #   include <locale.h>
67 #endif
68
69 #ifdef ENABLE_NLS
70 # include <libintl.h> /* bindtextdomain */
71 #endif
72
73 #ifdef HAVE_DBUS
74 /* used for one-instance mode */
75 #   include <dbus/dbus.h>
76 #endif
77
78 #ifdef HAVE_HAL
79 #   include <hal/libhal.h>
80 #endif
81
82 #include <vlc_playlist.h>
83 #include <vlc_interface.h>
84
85 #include <vlc_aout.h>
86 #include "audio_output/aout_internal.h"
87
88 #include <vlc_charset.h>
89
90 #include "libvlc.h"
91
92 #include "playlist/playlist_internal.h"
93
94 #include <vlc_vlm.h>
95
96 #ifdef __APPLE__
97 # include <libkern/OSAtomic.h>
98 #endif
99
100 #include <assert.h>
101
102 /*****************************************************************************
103  * The evil global variables. We handle them with care, don't worry.
104  *****************************************************************************/
105 static unsigned          i_instances = 0;
106
107 #ifndef WIN32
108 static bool b_daemon = false;
109 #endif
110
111 #undef vlc_gc_init
112 #undef vlc_hold
113 #undef vlc_release
114
115 /**
116  * Atomically set the reference count to 1.
117  * @param p_gc reference counted object
118  * @param pf_destruct destruction calback
119  * @return p_gc.
120  */
121 void *vlc_gc_init (gc_object_t *p_gc, void (*pf_destruct) (gc_object_t *))
122 {
123     /* There is no point in using the GC if there is no destructor... */
124     assert (pf_destruct);
125     p_gc->pf_destructor = pf_destruct;
126
127     p_gc->refs = 1;
128 #if defined (__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4)
129     __sync_synchronize ();
130 #elif defined (WIN32) && defined (__GNUC__)
131 #elif defined(__APPLE__)
132     OSMemoryBarrier ();
133 #else
134     /* Nobody else can possibly lock the spin - it's there as a barrier */
135     vlc_spin_init (&p_gc->spin);
136     vlc_spin_lock (&p_gc->spin);
137     vlc_spin_unlock (&p_gc->spin);
138 #endif
139     return p_gc;
140 }
141
142 /**
143  * Atomically increment the reference count.
144  * @param p_gc reference counted object
145  * @return p_gc.
146  */
147 void *vlc_hold (gc_object_t * p_gc)
148 {
149     uintptr_t refs;
150     assert( p_gc );
151     assert ((((uintptr_t)&p_gc->refs) & (sizeof (void *) - 1)) == 0); /* alignment */
152
153 #if defined (__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4)
154     refs = __sync_add_and_fetch (&p_gc->refs, 1);
155 #elif defined (WIN64)
156     refs = InterlockedIncrement64 (&p_gc->refs);
157 #elif defined (WIN32)
158     refs = InterlockedIncrement (&p_gc->refs);
159 #elif defined(__APPLE__)
160     refs = OSAtomicIncrement32Barrier((int*)&p_gc->refs);
161 #else
162     vlc_spin_lock (&p_gc->spin);
163     refs = ++p_gc->refs;
164     vlc_spin_unlock (&p_gc->spin);
165 #endif
166     assert (refs != 1); /* there had to be a reference already */
167     return p_gc;
168 }
169
170 /**
171  * Atomically decrement the reference count and, if it reaches zero, destroy.
172  * @param p_gc reference counted object.
173  */
174 void vlc_release (gc_object_t *p_gc)
175 {
176     unsigned refs;
177
178     assert( p_gc );
179     assert ((((uintptr_t)&p_gc->refs) & (sizeof (void *) - 1)) == 0); /* alignment */
180
181 #if defined (__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4)
182     refs = __sync_sub_and_fetch (&p_gc->refs, 1);
183 #elif defined (WIN64)
184     refs = InterlockedDecrement64 (&p_gc->refs);
185 #elif defined (WIN32)
186     refs = InterlockedDecrement (&p_gc->refs);
187 #elif defined(__APPLE__)
188     refs = OSAtomicDecrement32Barrier((int*)&p_gc->refs);
189 #else
190     vlc_spin_lock (&p_gc->spin);
191     refs = --p_gc->refs;
192     vlc_spin_unlock (&p_gc->spin);
193 #endif
194
195     assert (refs != (uintptr_t)(-1)); /* reference underflow?! */
196     if (refs == 0)
197     {
198 #ifdef USE_SYNC
199 #elif defined (WIN32) && defined (__GNUC__)
200 #elif defined(__APPLE__)
201 #else
202         vlc_spin_destroy (&p_gc->spin);
203 #endif
204         p_gc->pf_destructor (p_gc);
205     }
206 }
207
208 /*****************************************************************************
209  * Local prototypes
210  *****************************************************************************/
211 #if defined( ENABLE_NLS ) && (defined (__APPLE__) || defined (WIN32)) && \
212     ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
213 static void SetLanguage   ( char const * );
214 #endif
215 static inline int LoadMessages (void);
216 static int  GetFilenames  ( libvlc_int_t *, int, const char *[] );
217 static void Help          ( libvlc_int_t *, char const *psz_help_name );
218 static void Usage         ( libvlc_int_t *, char const *psz_search );
219 static void ListModules   ( libvlc_int_t *, bool );
220 static void Version       ( void );
221
222 #ifdef WIN32
223 static void ShowConsole   ( bool );
224 static void PauseConsole  ( void );
225 #endif
226 static int  ConsoleWidth  ( void );
227
228 static void InitDeviceValues( libvlc_int_t * );
229
230 static vlc_mutex_t global_lock = VLC_STATIC_MUTEX;
231
232 /**
233  * Allocate a libvlc instance, initialize global data if needed
234  * It also initializes the threading system
235  */
236 libvlc_int_t * libvlc_InternalCreate( void )
237 {
238     libvlc_int_t *p_libvlc;
239     libvlc_priv_t *priv;
240     char *psz_env = NULL;
241
242     /* Now that the thread system is initialized, we don't have much, but
243      * at least we have variables */
244     vlc_mutex_lock( &global_lock );
245     if( i_instances == 0 )
246     {
247         /* Guess what CPU we have */
248         cpu_flags = CPUCapabilities();
249         /* The module bank will be initialized later */
250     }
251
252     /* Allocate a libvlc instance object */
253     p_libvlc = __vlc_custom_create( NULL, sizeof (*priv),
254                                   VLC_OBJECT_GENERIC, "libvlc" );
255     if( p_libvlc != NULL )
256         i_instances++;
257     vlc_mutex_unlock( &global_lock );
258
259     if( p_libvlc == NULL )
260         return NULL;
261
262     priv = libvlc_priv (p_libvlc);
263     priv->p_playlist = NULL;
264     priv->p_dialog_provider = NULL;
265     priv->p_vlm = NULL;
266     p_libvlc->psz_object_name = strdup( "libvlc" );
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_mutex_init( &priv->config_lock );
286     vlc_cond_init( &priv->exiting );
287
288     return p_libvlc;
289 }
290
291 /**
292  * Initialize a libvlc instance
293  * This function initializes a previously allocated libvlc instance:
294  *  - CPU detection
295  *  - gettext initialization
296  *  - message queue, module bank and playlist initialization
297  *  - configuration and commandline parsing
298  */
299 int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
300                          const char *ppsz_argv[] )
301 {
302     libvlc_priv_t *priv = libvlc_priv (p_libvlc);
303     char         p_capabilities[200];
304     char *       p_tmp = NULL;
305     char *       psz_modules = NULL;
306     char *       psz_parser = NULL;
307     char *       psz_control = NULL;
308     bool   b_exit = false;
309     int          i_ret = VLC_EEXIT;
310     playlist_t  *p_playlist = NULL;
311     vlc_value_t  val;
312 #if defined( ENABLE_NLS ) \
313      && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
314 # if defined (WIN32) || defined (__APPLE__)
315     char *       psz_language;
316 #endif
317 #endif
318
319     /* System specific initialization code */
320     system_Init( p_libvlc, &i_argc, ppsz_argv );
321
322     /*
323      * Support for gettext
324      */
325     LoadMessages ();
326
327     /* Initialize the module bank and load the configuration of the
328      * main module. We need to do this at this stage to be able to display
329      * a short help if required by the user. (short help == main module
330      * options) */
331     module_InitBank( p_libvlc );
332
333     if( config_LoadCmdLine( p_libvlc, &i_argc, ppsz_argv, true ) )
334     {
335         module_EndBank( p_libvlc, false );
336         return VLC_EGENERIC;
337     }
338
339     priv->i_verbose = config_GetInt( p_libvlc, "verbose" );
340     /* Announce who we are - Do it only for first instance ? */
341     msg_Dbg( p_libvlc, "%s", COPYRIGHT_MESSAGE );
342     msg_Dbg( p_libvlc, "libvlc was configured with %s", CONFIGURE_LINE );
343     /*xgettext: Translate "C" to the language code: "fr", "en_GB", "nl", "ru"... */
344     msg_Dbg( p_libvlc, "translation test: code is \"%s\"", _("C") );
345
346     /* Check for short help option */
347     if( config_GetInt( p_libvlc, "help" ) > 0 )
348     {
349         Help( p_libvlc, "help" );
350         b_exit = true;
351         i_ret = VLC_EEXITSUCCESS;
352     }
353     /* Check for version option */
354     else if( config_GetInt( p_libvlc, "version" ) > 0 )
355     {
356         Version();
357         b_exit = true;
358         i_ret = VLC_EEXITSUCCESS;
359     }
360
361     /* Set the config file stuff */
362     priv->psz_configfile = config_GetCustomConfigFile( p_libvlc );
363
364     /* Check for plugins cache options */
365     bool b_cache_delete = config_GetInt( p_libvlc, "reset-plugins-cache" ) > 0;
366
367     /* Check for daemon mode */
368 #ifndef WIN32
369     if( config_GetInt( p_libvlc, "daemon" ) > 0 )
370     {
371 #ifdef HAVE_DAEMON
372         char *psz_pidfile = NULL;
373
374         if( daemon( 1, 0) != 0 )
375         {
376             msg_Err( p_libvlc, "Unable to fork vlc to daemon mode" );
377             b_exit = true;
378         }
379         b_daemon = true;
380
381         /* lets check if we need to write the pidfile */
382         psz_pidfile = config_GetPsz( p_libvlc, "pidfile" );
383         if( psz_pidfile != NULL )
384         {
385             FILE *pidfile;
386             pid_t i_pid = getpid ();
387             msg_Dbg( p_libvlc, "PID is %d, writing it to %s",
388                                i_pid, psz_pidfile );
389             pidfile = utf8_fopen( psz_pidfile,"w" );
390             if( pidfile != NULL )
391             {
392                 utf8_fprintf( pidfile, "%d", (int)i_pid );
393                 fclose( pidfile );
394             }
395             else
396             {
397                 msg_Err( p_libvlc, "cannot open pid file for writing: %s (%m)",
398                          psz_pidfile );
399             }
400         }
401         free( psz_pidfile );
402
403 #else
404         pid_t i_pid;
405
406         if( ( i_pid = fork() ) < 0 )
407         {
408             msg_Err( p_libvlc, "unable to fork vlc to daemon mode" );
409             b_exit = true;
410         }
411         else if( i_pid )
412         {
413             /* This is the parent, exit right now */
414             msg_Dbg( p_libvlc, "closing parent process" );
415             b_exit = true;
416             i_ret = VLC_EEXITSUCCESS;
417         }
418         else
419         {
420             /* We are the child */
421             msg_Dbg( p_libvlc, "daemon spawned" );
422             close( STDIN_FILENO );
423             close( STDOUT_FILENO );
424             close( STDERR_FILENO );
425
426             b_daemon = true;
427         }
428 #endif
429     }
430 #endif
431
432     if( b_exit )
433     {
434         free( priv->psz_configfile );
435         module_EndBank( p_libvlc, false );
436         return i_ret;
437     }
438
439     /* Check for translation config option */
440 #if defined( ENABLE_NLS ) \
441      && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
442 # if defined (WIN32) || defined (__APPLE__)
443     /* This ain't really nice to have to reload the config here but it seems
444      * the only way to do it. */
445
446     if( !config_GetInt( p_libvlc, "ignore-config" ) )
447         config_LoadConfigFile( p_libvlc, "main" );
448     config_LoadCmdLine( p_libvlc, &i_argc, ppsz_argv, true );
449     priv->i_verbose = config_GetInt( p_libvlc, "verbose" );
450
451     /* Check if the user specified a custom language */
452     psz_language = config_GetPsz( p_libvlc, "language" );
453     if( psz_language && *psz_language && strcmp( psz_language, "auto" ) )
454     {
455         /* Reset the default domain */
456         SetLanguage( psz_language );
457
458         /* Translate "C" to the language code: "fr", "en_GB", "nl", "ru"... */
459         msg_Dbg( p_libvlc, "translation test: code is \"%s\"", _("C") );
460
461         module_EndBank( p_libvlc, false );
462         module_InitBank( p_libvlc );
463         if( !config_GetInt( p_libvlc, "ignore-config" ) )
464             config_LoadConfigFile( p_libvlc, "main" );
465         config_LoadCmdLine( p_libvlc, &i_argc, ppsz_argv, true );
466         priv->i_verbose = config_GetInt( p_libvlc, "verbose" );
467     }
468     free( psz_language );
469 # endif
470 #endif
471
472     /*
473      * Load the builtins and plugins into the module_bank.
474      * We have to do it before config_Load*() because this also gets the
475      * list of configuration options exported by each module and loads their
476      * default values.
477      */
478     module_LoadPlugins( p_libvlc, b_cache_delete );
479     if( p_libvlc->b_die )
480     {
481         b_exit = true;
482     }
483
484     size_t module_count;
485     module_t **list = module_list_get( &module_count );
486     module_list_free( list );
487     msg_Dbg( p_libvlc, "module bank initialized (%zu modules)", module_count );
488
489     /* Check for help on modules */
490     if( (p_tmp = config_GetPsz( p_libvlc, "module" )) )
491     {
492         Help( p_libvlc, p_tmp );
493         free( p_tmp );
494         b_exit = true;
495         i_ret = VLC_EEXITSUCCESS;
496     }
497     /* Check for full help option */
498     else if( config_GetInt( p_libvlc, "full-help" ) > 0 )
499     {
500         config_PutInt( p_libvlc, "advanced", 1);
501         config_PutInt( p_libvlc, "help-verbose", 1);
502         Help( p_libvlc, "full-help" );
503         b_exit = true;
504         i_ret = VLC_EEXITSUCCESS;
505     }
506     /* Check for long help option */
507     else if( config_GetInt( p_libvlc, "longhelp" ) > 0 )
508     {
509         Help( p_libvlc, "longhelp" );
510         b_exit = true;
511         i_ret = VLC_EEXITSUCCESS;
512     }
513     /* Check for module list option */
514     else if( config_GetInt( p_libvlc, "list" ) > 0 )
515     {
516         ListModules( p_libvlc, false );
517         b_exit = true;
518         i_ret = VLC_EEXITSUCCESS;
519     }
520     else if( config_GetInt( p_libvlc, "list-verbose" ) > 0 )
521     {
522         ListModules( p_libvlc, true );
523         b_exit = true;
524         i_ret = VLC_EEXITSUCCESS;
525     }
526
527     /* Check for config file options */
528     if( !config_GetInt( p_libvlc, "ignore-config" ) )
529     {
530         if( config_GetInt( p_libvlc, "reset-config" ) > 0 )
531         {
532             config_ResetAll( p_libvlc );
533             config_LoadCmdLine( p_libvlc, &i_argc, ppsz_argv, true );
534             config_SaveConfigFile( p_libvlc, NULL );
535         }
536         if( config_GetInt( p_libvlc, "save-config" ) > 0 )
537         {
538             config_LoadConfigFile( p_libvlc, NULL );
539             config_LoadCmdLine( p_libvlc, &i_argc, ppsz_argv, true );
540             config_SaveConfigFile( p_libvlc, NULL );
541         }
542     }
543
544     if( b_exit )
545     {
546         free( priv->psz_configfile );
547         module_EndBank( p_libvlc, true );
548         return i_ret;
549     }
550
551     /*
552      * Init device values
553      */
554     InitDeviceValues( p_libvlc );
555
556     /*
557      * Override default configuration with config file settings
558      */
559     if( !config_GetInt( p_libvlc, "ignore-config" ) )
560         config_LoadConfigFile( p_libvlc, NULL );
561
562     /*
563      * Override configuration with command line settings
564      */
565     if( config_LoadCmdLine( p_libvlc, &i_argc, ppsz_argv, false ) )
566     {
567 #ifdef WIN32
568         ShowConsole( false );
569         /* Pause the console because it's destroyed when we exit */
570         fprintf( stderr, "The command line options couldn't be loaded, check "
571                  "that they are valid.\n" );
572         PauseConsole();
573 #endif
574         free( priv->psz_configfile );
575         module_EndBank( p_libvlc, true );
576         return VLC_EGENERIC;
577     }
578     priv->i_verbose = config_GetInt( p_libvlc, "verbose" );
579
580     /*
581      * System specific configuration
582      */
583     system_Configure( p_libvlc, &i_argc, ppsz_argv );
584
585 /* FIXME: could be replaced by using Unix sockets */
586 #ifdef HAVE_DBUS
587     dbus_threads_init_default();
588
589     if( config_GetInt( p_libvlc, "one-instance" ) > 0
590         || ( config_GetInt( p_libvlc, "one-instance-when-started-from-file" )
591              && config_GetInt( p_libvlc, "started-from-file" ) ) )
592     {
593         /* Initialise D-Bus interface, check for other instances */
594         DBusConnection  *p_conn = NULL;
595         DBusError       dbus_error;
596
597         dbus_error_init( &dbus_error );
598
599         /* connect to the session bus */
600         p_conn = dbus_bus_get( DBUS_BUS_SESSION, &dbus_error );
601         if( !p_conn )
602         {
603             msg_Err( p_libvlc, "Failed to connect to D-Bus session daemon: %s",
604                     dbus_error.message );
605             dbus_error_free( &dbus_error );
606         }
607         else
608         {
609             /* check if VLC is available on the bus
610              * if not: D-Bus control is not enabled on the other
611              * instance and we can't pass MRLs to it */
612             DBusMessage *p_test_msg = NULL;
613             DBusMessage *p_test_reply = NULL;
614             p_test_msg =  dbus_message_new_method_call(
615                     "org.mpris.vlc", "/",
616                     "org.freedesktop.MediaPlayer", "Identity" );
617             /* block until a reply arrives */
618             p_test_reply = dbus_connection_send_with_reply_and_block(
619                     p_conn, p_test_msg, -1, &dbus_error );
620             dbus_message_unref( p_test_msg );
621             if( p_test_reply == NULL )
622             {
623                 dbus_error_free( &dbus_error );
624                 msg_Dbg( p_libvlc, "No Media Player is running. "
625                         "Continuing normally." );
626             }
627             else
628             {
629                 int i_input;
630                 DBusMessage* p_dbus_msg = NULL;
631                 DBusMessageIter dbus_args;
632                 DBusPendingCall* p_dbus_pending = NULL;
633                 dbus_bool_t b_play;
634
635                 dbus_message_unref( p_test_reply );
636                 msg_Warn( p_libvlc, "Another Media Player is running. Exiting");
637
638                 for( i_input = optind;i_input < i_argc;i_input++ )
639                 {
640                     msg_Dbg( p_libvlc, "Adds %s to the running Media Player",
641                             ppsz_argv[i_input] );
642
643                     p_dbus_msg = dbus_message_new_method_call(
644                             "org.mpris.vlc", "/TrackList",
645                             "org.freedesktop.MediaPlayer", "AddTrack" );
646
647                     if ( NULL == p_dbus_msg )
648                     {
649                         msg_Err( p_libvlc, "D-Bus problem" );
650                         system_End( p_libvlc );
651                         exit( VLC_ETIMEOUT );
652                     }
653
654                     /* append MRLs */
655                     dbus_message_iter_init_append( p_dbus_msg, &dbus_args );
656                     if ( !dbus_message_iter_append_basic( &dbus_args,
657                                 DBUS_TYPE_STRING, &ppsz_argv[i_input] ) )
658                     {
659                         dbus_message_unref( p_dbus_msg );
660                         system_End( p_libvlc );
661                         exit( VLC_ENOMEM );
662                     }
663                     b_play = TRUE;
664                     if( config_GetInt( p_libvlc, "playlist-enqueue" ) > 0 )
665                         b_play = FALSE;
666                     if ( !dbus_message_iter_append_basic( &dbus_args,
667                                 DBUS_TYPE_BOOLEAN, &b_play ) )
668                     {
669                         dbus_message_unref( p_dbus_msg );
670                         system_End( p_libvlc );
671                         exit( VLC_ENOMEM );
672                     }
673
674                     /* send message and get a handle for a reply */
675                     if ( !dbus_connection_send_with_reply ( p_conn,
676                                 p_dbus_msg, &p_dbus_pending, -1 ) )
677                     {
678                         msg_Err( p_libvlc, "D-Bus problem" );
679                         dbus_message_unref( p_dbus_msg );
680                         system_End( p_libvlc );
681                         exit( VLC_ETIMEOUT );
682                     }
683
684                     if ( NULL == p_dbus_pending )
685                     {
686                         msg_Err( p_libvlc, "D-Bus problem" );
687                         dbus_message_unref( p_dbus_msg );
688                         system_End( p_libvlc );
689                         exit( VLC_ETIMEOUT );
690                     }
691                     dbus_connection_flush( p_conn );
692                     dbus_message_unref( p_dbus_msg );
693                     /* block until we receive a reply */
694                     dbus_pending_call_block( p_dbus_pending );
695                     dbus_pending_call_unref( p_dbus_pending );
696                 } /* processes all command line MRLs */
697
698                 /* bye bye */
699                 system_End( p_libvlc );
700                 exit( VLC_SUCCESS );
701             }
702         }
703         /* we unreference the connection when we've finished with it */
704         if( p_conn ) dbus_connection_unref( p_conn );
705     }
706 #endif
707
708     /*
709      * Message queue options
710      */
711     char * psz_verbose_objects = config_GetPsz( p_libvlc, "verbose-objects" );
712     if( psz_verbose_objects )
713     {
714         char * psz_object, * iter = psz_verbose_objects;
715         while( (psz_object = strsep( &iter, "," )) )
716         {
717             switch( psz_object[0] )
718             {
719                 printf("%s\n", psz_object+1);
720                 case '+': msg_EnableObjectPrinting(p_libvlc, psz_object+1); break;
721                 case '-': msg_DisableObjectPrinting(p_libvlc, psz_object+1); break;
722                 default:
723                     msg_Err( p_libvlc, "verbose-objects usage: \n"
724                             "--verbose-objects=+printthatobject,"
725                             "-dontprintthatone\n"
726                             "(keyword 'all' to applies to all objects)");
727                     free( psz_verbose_objects );
728                     /* FIXME: leaks!!!! */
729                     return VLC_EGENERIC;
730             }
731         }
732         free( psz_verbose_objects );
733     }
734
735     /* Last chance to set the verbosity. Once we start interfaces and other
736      * threads, verbosity becomes read-only. */
737     var_Create( p_libvlc, "verbose", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
738     if( config_GetInt( p_libvlc, "quiet" ) > 0 )
739     {
740         var_SetInteger( p_libvlc, "verbose", -1 );
741         priv->i_verbose = -1;
742     }
743
744     if( priv->b_color )
745         priv->b_color = config_GetInt( p_libvlc, "color" ) > 0;
746
747     if( !config_GetInt( p_libvlc, "fpu" ) )
748         cpu_flags &= ~CPU_CAPABILITY_FPU;
749
750 #if defined( __i386__ ) || defined( __x86_64__ )
751     if( !config_GetInt( p_libvlc, "mmx" ) )
752         cpu_flags &= ~CPU_CAPABILITY_MMX;
753     if( !config_GetInt( p_libvlc, "3dn" ) )
754         cpu_flags &= ~CPU_CAPABILITY_3DNOW;
755     if( !config_GetInt( p_libvlc, "mmxext" ) )
756         cpu_flags &= ~CPU_CAPABILITY_MMXEXT;
757     if( !config_GetInt( p_libvlc, "sse" ) )
758         cpu_flags &= ~CPU_CAPABILITY_SSE;
759     if( !config_GetInt( p_libvlc, "sse2" ) )
760         cpu_flags &= ~CPU_CAPABILITY_SSE2;
761 #endif
762 #if defined( __powerpc__ ) || defined( __ppc__ ) || defined( __ppc64__ )
763     if( !config_GetInt( p_libvlc, "altivec" ) )
764         cpu_flags &= ~CPU_CAPABILITY_ALTIVEC;
765 #endif
766
767 #define PRINT_CAPABILITY( capability, string )                              \
768     if( vlc_CPU() & capability )                                            \
769     {                                                                       \
770         strncat( p_capabilities, string " ",                                \
771                  sizeof(p_capabilities) - strlen(p_capabilities) );         \
772         p_capabilities[sizeof(p_capabilities) - 1] = '\0';                  \
773     }
774
775     p_capabilities[0] = '\0';
776     PRINT_CAPABILITY( CPU_CAPABILITY_486, "486" );
777     PRINT_CAPABILITY( CPU_CAPABILITY_586, "586" );
778     PRINT_CAPABILITY( CPU_CAPABILITY_PPRO, "Pentium Pro" );
779     PRINT_CAPABILITY( CPU_CAPABILITY_MMX, "MMX" );
780     PRINT_CAPABILITY( CPU_CAPABILITY_3DNOW, "3DNow!" );
781     PRINT_CAPABILITY( CPU_CAPABILITY_MMXEXT, "MMXEXT" );
782     PRINT_CAPABILITY( CPU_CAPABILITY_SSE, "SSE" );
783     PRINT_CAPABILITY( CPU_CAPABILITY_SSE2, "SSE2" );
784     PRINT_CAPABILITY( CPU_CAPABILITY_ALTIVEC, "AltiVec" );
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
793     priv->b_stats = config_GetInt( p_libvlc, "stats" ) > 0;
794     priv->i_timers = 0;
795     priv->pp_timers = NULL;
796
797     priv->i_last_input_id = 0; /* Not very safe, should be removed */
798
799     /*
800      * Initialize hotkey handling
801      */
802     var_Create( p_libvlc, "key-pressed", VLC_VAR_INTEGER );
803     var_Create( p_libvlc, "key-action", VLC_VAR_INTEGER );
804     {
805         struct hotkey *p_keys =
806             malloc( (libvlc_actions_count + 1) * sizeof (*p_keys) );
807
808         /* Initialize from configuration */
809         for( size_t i = 0; i < libvlc_actions_count; i++ )
810         {
811             p_keys[i].psz_action = libvlc_actions[i].name;
812             p_keys[i].i_key = config_GetInt( p_libvlc,
813                                              libvlc_actions[i].name );
814             p_keys[i].i_action = libvlc_actions[i].value;
815         }
816         p_keys[libvlc_actions_count].psz_action = NULL;
817         p_keys[libvlc_actions_count].i_key = 0;
818         p_keys[libvlc_actions_count].i_action = 0;
819         p_libvlc->p_hotkeys = p_keys;
820         var_AddCallback( p_libvlc, "key-pressed", vlc_key_to_action,
821                          p_keys );
822     }
823
824     /* Initialize playlist and get commandline files */
825     p_playlist = playlist_Create( VLC_OBJECT(p_libvlc) );
826     if( !p_playlist )
827     {
828         msg_Err( p_libvlc, "playlist initialization failed" );
829         if( priv->p_memcpy_module != NULL )
830         {
831             module_unneed( p_libvlc, priv->p_memcpy_module );
832         }
833         module_EndBank( p_libvlc, true );
834         free( priv->psz_configfile );
835         return VLC_EGENERIC;
836     }
837     playlist_Activate( p_playlist );
838     vlc_object_attach( p_playlist, p_libvlc );
839
840     /* Add service discovery modules */
841     psz_modules = config_GetPsz( p_playlist, "services-discovery" );
842     if( psz_modules && *psz_modules )
843     {
844         char *p = psz_modules, *m;
845         while( ( m = strsep( &p, " :," ) ) != NULL )
846             playlist_ServicesDiscoveryAdd( p_playlist, m );
847     }
848     free( psz_modules );
849
850 #ifdef ENABLE_VLM
851     /* Initialize VLM if vlm-conf is specified */
852     psz_parser = config_GetPsz( p_libvlc, "vlm-conf" );
853     if( psz_parser && *psz_parser )
854     {
855         priv->p_vlm = vlm_New( p_libvlc );
856         if( !priv->p_vlm )
857             msg_Err( p_libvlc, "VLM initialization failed" );
858     }
859     free( psz_parser );
860 #endif
861
862     /*
863      * Load background interfaces
864      */
865     psz_modules = config_GetPsz( p_libvlc, "extraintf" );
866     psz_control = config_GetPsz( p_libvlc, "control" );
867
868     if( psz_modules && *psz_modules && psz_control && *psz_control )
869     {
870         char* psz_tmp;
871         if( asprintf( &psz_tmp, "%s:%s", psz_modules, psz_control ) != -1 )
872         {
873             free( psz_modules );
874             psz_modules = psz_tmp;
875         }
876     }
877     else if( psz_control && *psz_control )
878     {
879         free( psz_modules );
880         psz_modules = strdup( psz_control );
881     }
882
883     psz_parser = psz_modules;
884     while ( psz_parser && *psz_parser )
885     {
886         char *psz_module, *psz_temp;
887         psz_module = psz_parser;
888         psz_parser = strchr( psz_module, ':' );
889         if ( psz_parser )
890         {
891             *psz_parser = '\0';
892             psz_parser++;
893         }
894         if( asprintf( &psz_temp, "%s,none", psz_module ) != -1)
895         {
896             libvlc_InternalAddIntf( p_libvlc, psz_temp );
897             free( psz_temp );
898         }
899     }
900     free( psz_modules );
901     free( psz_control );
902
903     /*
904      * Always load the hotkeys interface if it exists
905      */
906     libvlc_InternalAddIntf( p_libvlc, "hotkeys,none" );
907     if( module_exists( "globalhotkeys" ) )
908         libvlc_InternalAddIntf( p_libvlc, "globalhotkeys,none" );
909
910 #ifdef HAVE_DBUS
911     /* loads dbus control interface if in one-instance mode
912      * we do it only when playlist exists, because dbus module needs it */
913     if( config_GetInt( p_libvlc, "one-instance" ) > 0
914         || ( config_GetInt( p_libvlc, "one-instance-when-started-from-file" )
915              && config_GetInt( p_libvlc, "started-from-file" ) ) )
916         libvlc_InternalAddIntf( p_libvlc, "dbus,none" );
917
918     /* Prevents the power management daemon from suspending the system
919      * when VLC is active */
920     if( config_GetInt( p_libvlc, "inhibit" ) > 0 )
921         libvlc_InternalAddIntf( p_libvlc, "inhibit,none" );
922 #endif
923
924     /*
925      * If needed, load the Xscreensaver interface
926      * Currently, only for X
927      */
928 #ifdef HAVE_X11_XLIB_H
929     if( config_GetInt( p_libvlc, "disable-screensaver" ) )
930     {
931         libvlc_InternalAddIntf( p_libvlc, "screensaver,none" );
932     }
933 #endif
934
935     if( (config_GetInt( p_libvlc, "file-logging" ) > 0) &&
936         !config_GetInt( p_libvlc, "syslog" ) )
937     {
938         libvlc_InternalAddIntf( p_libvlc, "logger,none" );
939     }
940 #ifdef HAVE_SYSLOG_H
941     if( config_GetInt( p_libvlc, "syslog" ) > 0 )
942     {
943         char *logmode = var_CreateGetString( p_libvlc, "logmode" );
944         var_SetString( p_libvlc, "logmode", "syslog" );
945         libvlc_InternalAddIntf( p_libvlc, "logger,none" );
946
947         if( logmode )
948         {
949             var_SetString( p_libvlc, "logmode", logmode );
950             free( logmode );
951         }
952         else
953             var_Destroy( p_libvlc, "logmode" );
954     }
955 #endif
956
957     if( config_GetInt( p_libvlc, "show-intf" ) > 0 )
958     {
959         libvlc_InternalAddIntf( p_libvlc, "showintf,none" );
960     }
961
962     if( config_GetInt( p_libvlc, "network-synchronisation") > 0 )
963     {
964         libvlc_InternalAddIntf( p_libvlc, "netsync,none" );
965     }
966
967 #ifdef WIN32
968     if( config_GetInt( p_libvlc, "prefer-system-codecs") > 0 )
969     {
970         char *psz_codecs = config_GetPsz( p_playlist, "codec" );
971         if( psz_codecs )
972         {
973             char *psz_morecodecs;
974             if( asprintf(&psz_morecodecs, "%s,dmo,quicktime", psz_codecs) != -1 )
975             {
976                 config_PutPsz( p_libvlc, "codec", psz_morecodecs);
977                 free( psz_morecodecs );
978             }
979         }
980         else
981             config_PutPsz( p_libvlc, "codec", "dmo,quicktime");
982         free( psz_codecs );
983     }
984 #endif
985
986     /*
987      * FIXME: kludge to use a p_libvlc-local variable for the Mozilla plugin
988      */
989     var_Create( p_libvlc, "drawable-xid", VLC_VAR_INTEGER );
990     var_Create( p_libvlc, "drawable-hwnd", VLC_VAR_ADDRESS );
991     var_Create( p_libvlc, "drawable-agl", VLC_VAR_INTEGER );
992     var_Create( p_libvlc, "drawable-gl", VLC_VAR_INTEGER );
993
994     var_Create( p_libvlc, "drawable-view-top", VLC_VAR_INTEGER );
995     var_Create( p_libvlc, "drawable-view-left", VLC_VAR_INTEGER );
996     var_Create( p_libvlc, "drawable-view-bottom", VLC_VAR_INTEGER );
997     var_Create( p_libvlc, "drawable-view-right", VLC_VAR_INTEGER );
998     var_Create( p_libvlc, "drawable-clip-top", VLC_VAR_INTEGER );
999     var_Create( p_libvlc, "drawable-clip-left", VLC_VAR_INTEGER );
1000     var_Create( p_libvlc, "drawable-clip-bottom", VLC_VAR_INTEGER );
1001     var_Create( p_libvlc, "drawable-clip-right", VLC_VAR_INTEGER );
1002
1003     /* Create volume callback system. */
1004     var_Create( p_libvlc, "volume-change", VLC_VAR_BOOL );
1005
1006     /* Create a variable for showing the interface (moved from playlist). */
1007     var_Create( p_libvlc, "intf-show", VLC_VAR_BOOL );
1008     var_SetBool( p_libvlc, "intf-show", true );
1009
1010     var_Create( p_libvlc, "intf-popupmenu", VLC_VAR_BOOL );
1011
1012     /*
1013      * Get input filenames given as commandline arguments
1014      */
1015     GetFilenames( p_libvlc, i_argc, ppsz_argv );
1016
1017     /*
1018      * Get --open argument
1019      */
1020     var_Create( p_libvlc, "open", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
1021     var_Get( p_libvlc, "open", &val );
1022     if ( val.psz_string != NULL && *val.psz_string )
1023     {
1024         playlist_t *p_playlist = pl_Hold( p_libvlc );
1025         playlist_AddExt( p_playlist, val.psz_string, NULL, PLAYLIST_INSERT, 0,
1026                          -1, 0, NULL, 0, true, pl_Unlocked );
1027         pl_Release( p_libvlc );
1028     }
1029     free( val.psz_string );
1030
1031     return VLC_SUCCESS;
1032 }
1033
1034 /**
1035  * Cleanup a libvlc instance. The instance is not completely deallocated
1036  * \param p_libvlc the instance to clean
1037  */
1038 void libvlc_InternalCleanup( libvlc_int_t *p_libvlc )
1039 {
1040     libvlc_priv_t *priv = libvlc_priv (p_libvlc);
1041     playlist_t    *p_playlist = priv->p_playlist;
1042
1043     /* Deactivate the playlist */
1044     msg_Dbg( p_libvlc, "deactivating the playlist" );
1045     playlist_Deactivate( p_playlist );
1046
1047     /* Remove all services discovery */
1048     msg_Dbg( p_libvlc, "removing all services discovery tasks" );
1049     playlist_ServicesDiscoveryKillAll( p_playlist );
1050
1051     /* Ask the interfaces to stop and destroy them */
1052     msg_Dbg( p_libvlc, "removing all interfaces" );
1053     intf_thread_t *p_intf;
1054     while( (p_intf = vlc_object_find( p_libvlc, VLC_OBJECT_INTF, FIND_CHILD )) )
1055     {
1056         intf_StopThread( p_intf );
1057         vlc_object_detach( p_intf );
1058         vlc_object_release( p_intf ); /* for intf_Create() */
1059         vlc_object_release( p_intf ); /* for vlc_object_find() */
1060     }
1061
1062 #ifdef ENABLE_VLM
1063     /* Destroy VLM if created in libvlc_InternalInit */
1064     if( priv->p_vlm )
1065     {
1066         vlm_Delete( priv->p_vlm );
1067     }
1068 #endif
1069
1070     /* Free playlist */
1071     /* Any thread still running must not assume pl_Hold() succeeds. */
1072     msg_Dbg( p_libvlc, "removing playlist" );
1073
1074     libvlc_priv(p_playlist->p_libvlc)->p_playlist = NULL;
1075     barrier();  /* FIXME is that correct ? */
1076
1077     vlc_object_release( p_playlist );
1078
1079     stats_TimersDumpAll( p_libvlc );
1080     stats_TimersCleanAll( p_libvlc );
1081
1082     msg_Dbg( p_libvlc, "removing stats" );
1083
1084 #ifndef WIN32
1085     char* psz_pidfile = NULL;
1086
1087     if( b_daemon )
1088     {
1089         psz_pidfile = config_GetPsz( p_libvlc, "pidfile" );
1090         if( psz_pidfile != NULL )
1091         {
1092             msg_Dbg( p_libvlc, "removing pid file %s", psz_pidfile );
1093             if( unlink( psz_pidfile ) == -1 )
1094             {
1095                 msg_Dbg( p_libvlc, "removing pid file %s: %m",
1096                         psz_pidfile );
1097             }
1098         }
1099         free( psz_pidfile );
1100     }
1101 #endif
1102
1103     if( priv->p_memcpy_module )
1104     {
1105         module_unneed( p_libvlc, priv->p_memcpy_module );
1106         priv->p_memcpy_module = NULL;
1107     }
1108
1109     /* Free module bank. It is refcounted, so we call this each time  */
1110     module_EndBank( p_libvlc, true );
1111
1112     FREENULL( priv->psz_configfile );
1113     var_DelCallback( p_libvlc, "key-pressed", vlc_key_to_action,
1114                      (void *)p_libvlc->p_hotkeys );
1115     free( (void *)p_libvlc->p_hotkeys );
1116 }
1117
1118 /**
1119  * Destroy everything.
1120  * This function requests the running threads to finish, waits for their
1121  * termination, and destroys their structure.
1122  * It stops the thread systems: no instance can run after this has run
1123  * \param p_libvlc the instance to destroy
1124  */
1125 void libvlc_InternalDestroy( libvlc_int_t *p_libvlc )
1126 {
1127     libvlc_priv_t *priv = libvlc_priv( p_libvlc );
1128
1129     vlc_mutex_lock( &global_lock );
1130     i_instances--;
1131
1132     if( i_instances == 0 )
1133     {
1134         /* System specific cleaning code */
1135         system_End( p_libvlc );
1136     }
1137     vlc_mutex_unlock( &global_lock );
1138
1139     msg_Destroy( p_libvlc );
1140
1141     /* Destroy mutexes */
1142     vlc_cond_destroy( &priv->exiting );
1143     vlc_mutex_destroy( &priv->config_lock );
1144     vlc_mutex_destroy( &priv->timer_lock );
1145
1146 #ifndef NDEBUG /* Hack to dump leaked objects tree */
1147     if( vlc_internals( p_libvlc )->i_refcount > 1 )
1148         while( vlc_internals( p_libvlc )->i_refcount > 0 )
1149             vlc_object_release( p_libvlc );
1150 #endif
1151
1152     assert( vlc_internals( p_libvlc )->i_refcount == 1 );
1153     vlc_object_release( p_libvlc );
1154 }
1155
1156 /**
1157  * Add an interface plugin and run it
1158  */
1159 int libvlc_InternalAddIntf( libvlc_int_t *p_libvlc, char const *psz_module )
1160 {
1161     int i_err;
1162     intf_thread_t *p_intf = NULL;
1163
1164     if( !p_libvlc )
1165         return VLC_EGENERIC;
1166
1167     if( !psz_module ) /* requesting the default interface */
1168     {
1169         char *psz_interface = config_GetPsz( p_libvlc, "intf" );
1170         if( !psz_interface || !*psz_interface ) /* "intf" has not been set */
1171         {
1172 #ifndef WIN32
1173             if( b_daemon )
1174                  /* Daemon mode hack.
1175                   * We prefer the dummy interface if none is specified. */
1176                 psz_module = "dummy";
1177             else
1178 #endif
1179                 msg_Info( p_libvlc, "%s",
1180                           _("Running vlc with the default interface. "
1181                             "Use 'cvlc' to use vlc without interface.") );
1182         }
1183         free( psz_interface );
1184     }
1185
1186     /* Try to create the interface */
1187     p_intf = intf_Create( p_libvlc, psz_module ? psz_module : "$intf" );
1188     if( p_intf == NULL )
1189     {
1190         msg_Err( p_libvlc, "interface \"%s\" initialization failed",
1191                  psz_module );
1192         return VLC_EGENERIC;
1193     }
1194
1195     /* Try to run the interface */
1196     i_err = intf_RunThread( p_intf );
1197     if( i_err )
1198     {
1199         vlc_object_detach( p_intf );
1200         vlc_object_release( p_intf );
1201         return i_err;
1202     }
1203
1204     return VLC_SUCCESS;
1205 };
1206
1207 static vlc_mutex_t exit_lock = VLC_STATIC_MUTEX;
1208
1209 /**
1210  * Waits until the LibVLC instance gets an exit signal. Normally, this happens
1211  * when the user "exits" an interface plugin.
1212  */
1213 void libvlc_InternalWait( libvlc_int_t *p_libvlc )
1214 {
1215     libvlc_priv_t *priv = libvlc_priv( p_libvlc );
1216
1217     vlc_mutex_lock( &exit_lock );
1218     while( vlc_object_alive( p_libvlc ) )
1219         vlc_cond_wait( &priv->exiting, &exit_lock );
1220     vlc_mutex_unlock( &exit_lock );
1221 }
1222
1223 /**
1224  * Posts an exit signal to LibVLC instance. This will normally initiate the
1225  * cleanup and destroy process. It should only be called on behalf of the user.
1226  */
1227 void libvlc_Quit( libvlc_int_t *p_libvlc )
1228 {
1229     libvlc_priv_t *priv = libvlc_priv( p_libvlc );
1230
1231     vlc_mutex_lock( &exit_lock );
1232     vlc_object_kill( p_libvlc );
1233     vlc_cond_signal( &priv->exiting );
1234     vlc_mutex_unlock( &exit_lock );
1235 }
1236
1237 #if defined( ENABLE_NLS ) && (defined (__APPLE__) || defined (WIN32)) && \
1238     ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
1239 /*****************************************************************************
1240  * SetLanguage: set the interface language.
1241  *****************************************************************************
1242  * We set the LC_MESSAGES locale category for interface messages and buttons,
1243  * as well as the LC_CTYPE category for string sorting and possible wide
1244  * character support.
1245  *****************************************************************************/
1246 static void SetLanguage ( const char *psz_lang )
1247 {
1248 #ifdef __APPLE__
1249     /* I need that under Darwin, please check it doesn't disturb
1250      * other platforms. --Meuuh */
1251     setenv( "LANG", psz_lang, 1 );
1252
1253 #else
1254     /* We set LC_ALL manually because it is the only way to set
1255      * the language at runtime under eg. Windows. Beware that this
1256      * makes the environment unconsistent when libvlc is unloaded and
1257      * should probably be moved to a safer place like vlc.c. */
1258     static char psz_lcall[20];
1259     snprintf( psz_lcall, 19, "LC_ALL=%s", psz_lang );
1260     psz_lcall[19] = '\0';
1261     putenv( psz_lcall );
1262 #endif
1263
1264     setlocale( LC_ALL, psz_lang );
1265 }
1266 #endif
1267
1268
1269 static inline int LoadMessages (void)
1270 {
1271 #if defined( ENABLE_NLS ) \
1272      && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
1273     /* Specify where to find the locales for current domain */
1274 #if !defined( __APPLE__ ) && !defined( WIN32 ) && !defined( SYS_BEOS )
1275     static const char psz_path[] = LOCALEDIR;
1276 #else
1277     char psz_path[1024];
1278     if (snprintf (psz_path, sizeof (psz_path), "%s" DIR_SEP "%s",
1279                   config_GetDataDir(), "locale")
1280                      >= (int)sizeof (psz_path))
1281         return -1;
1282
1283 #endif
1284     if (bindtextdomain (PACKAGE_NAME, psz_path) == NULL)
1285     {
1286         fprintf (stderr, "Warning: cannot bind text domain "PACKAGE_NAME
1287                          " to directory %s\n", psz_path);
1288         return -1;
1289     }
1290
1291     /* LibVLC wants all messages in UTF-8.
1292      * Unfortunately, we cannot ask UTF-8 for strerror_r(), strsignal_r()
1293      * and other functions that are not part of our text domain.
1294      */
1295     if (bind_textdomain_codeset (PACKAGE_NAME, "UTF-8") == NULL)
1296     {
1297         fprintf (stderr, "Error: cannot set Unicode encoding for text domain "
1298                          PACKAGE_NAME"\n");
1299         // Unbinds the text domain to avoid broken encoding
1300         bindtextdomain (PACKAGE_NAME, "DOES_NOT_EXIST");
1301         return -1;
1302     }
1303
1304     /* LibVLC does NOT set the default textdomain, since it is a library.
1305      * This could otherwise break programs using LibVLC (other than VLC).
1306      * textdomain (PACKAGE_NAME);
1307      */
1308 #endif
1309     return 0;
1310 }
1311
1312 /*****************************************************************************
1313  * GetFilenames: parse command line options which are not flags
1314  *****************************************************************************
1315  * Parse command line for input files as well as their associated options.
1316  * An option always follows its associated input and begins with a ":".
1317  *****************************************************************************/
1318 static int GetFilenames( libvlc_int_t *p_vlc, int i_argc, const char *ppsz_argv[] )
1319 {
1320     int i_opt, i_options;
1321
1322     /* We assume that the remaining parameters are filenames
1323      * and their input options */
1324     for( i_opt = i_argc - 1; i_opt >= optind; i_opt-- )
1325     {
1326         i_options = 0;
1327
1328         /* Count the input options */
1329         while( *ppsz_argv[ i_opt ] == ':' && i_opt > optind )
1330         {
1331             i_options++;
1332             i_opt--;
1333         }
1334
1335         /* TODO: write an internal function of this one, to avoid
1336          *       unnecessary lookups. */
1337
1338         playlist_t *p_playlist = pl_Hold( p_vlc );
1339         playlist_AddExt( p_playlist, ppsz_argv[i_opt], NULL, PLAYLIST_INSERT,
1340                          0, -1,
1341                          i_options, ( i_options ? &ppsz_argv[i_opt + 1] : NULL ), VLC_INPUT_OPTION_TRUSTED,
1342                          true, pl_Unlocked );
1343         pl_Release( p_vlc );
1344     }
1345
1346     return VLC_SUCCESS;
1347 }
1348
1349 /*****************************************************************************
1350  * Help: print program help
1351  *****************************************************************************
1352  * Print a short inline help. Message interface is initialized at this stage.
1353  *****************************************************************************/
1354 static inline void print_help_on_full_help( void )
1355 {
1356     utf8_fprintf( stdout, "\n" );
1357     utf8_fprintf( stdout, "%s\n", _("To get exhaustive help, use '-H'.") );
1358 }
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 #ifdef WIN32
1990     ShowConsole( true );
1991 #endif
1992
1993     utf8_fprintf( stdout, _("VLC version %s\n"), VLC_Version() );
1994     utf8_fprintf( stdout, _("Compiled by %s@%s.%s\n"),
1995              VLC_CompileBy(), VLC_CompileHost(), VLC_CompileDomain() );
1996     utf8_fprintf( stdout, _("Compiler: %s\n"), VLC_Compiler() );
1997     utf8_fprintf( stdout, "%s", LICENSE_MSG );
1998
1999 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
2000     PauseConsole();
2001 #endif
2002 }
2003
2004 /*****************************************************************************
2005  * ShowConsole: On Win32, create an output console for debug messages
2006  *****************************************************************************
2007  * This function is useful only on Win32.
2008  *****************************************************************************/
2009 #ifdef WIN32 /*  */
2010 static void ShowConsole( bool b_dofile )
2011 {
2012 #   ifndef UNDER_CE
2013     FILE *f_help = NULL;
2014
2015     if( getenv( "PWD" ) && getenv( "PS1" ) ) return; /* cygwin shell */
2016
2017     AllocConsole();
2018     /* Use the ANSI code page (e.g. Windows-1252) as expected by the LibVLC
2019      * Unicode/locale subsystem. By default, we have the obsolecent OEM code
2020      * page (e.g. CP437 or CP850). */
2021     SetConsoleOutputCP (GetACP ());
2022     SetConsoleTitle ("VLC media player version "PACKAGE_VERSION);
2023
2024     freopen( "CONOUT$", "w", stderr );
2025     freopen( "CONIN$", "r", stdin );
2026
2027     if( b_dofile && (f_help = fopen( "vlc-help.txt", "wt" )) )
2028     {
2029         fclose( f_help );
2030         freopen( "vlc-help.txt", "wt", stdout );
2031         utf8_fprintf( stderr, _("\nDumped content to vlc-help.txt file.\n") );
2032     }
2033     else freopen( "CONOUT$", "w", stdout );
2034
2035 #   endif
2036 }
2037 #endif
2038
2039 /*****************************************************************************
2040  * PauseConsole: On Win32, wait for a key press before closing the console
2041  *****************************************************************************
2042  * This function is useful only on Win32.
2043  *****************************************************************************/
2044 #ifdef WIN32 /*  */
2045 static void PauseConsole( void )
2046 {
2047 #   ifndef UNDER_CE
2048
2049     if( getenv( "PWD" ) && getenv( "PS1" ) ) return; /* cygwin shell */
2050
2051     utf8_fprintf( stderr, _("\nPress the RETURN key to continue...\n") );
2052     getchar();
2053     fclose( stdout );
2054
2055 #   endif
2056 }
2057 #endif
2058
2059 /*****************************************************************************
2060  * ConsoleWidth: Return the console width in characters
2061  *****************************************************************************
2062  * We use the stty shell command to get the console width; if this fails or
2063  * if the width is less than 80, we default to 80.
2064  *****************************************************************************/
2065 static int ConsoleWidth( void )
2066 {
2067     unsigned i_width = 80;
2068
2069 #ifndef WIN32
2070     FILE *file = popen( "stty size 2>/dev/null", "r" );
2071     if (file != NULL)
2072     {
2073         if (fscanf (file, "%*u %u", &i_width) <= 0)
2074             i_width = 80;
2075         pclose( file );
2076     }
2077 #elif !defined (UNDER_CE)
2078     CONSOLE_SCREEN_BUFFER_INFO buf;
2079
2080     if (GetConsoleScreenBufferInfo (GetStdHandle (STD_OUTPUT_HANDLE), &buf))
2081         i_width = buf.dwSize.X;
2082 #endif
2083
2084     return i_width;
2085 }
2086
2087 /*****************************************************************************
2088  * InitDeviceValues: initialize device values
2089  *****************************************************************************
2090  * This function inits the dvd, vcd and cd-audio values
2091  *****************************************************************************/
2092 static void InitDeviceValues( libvlc_int_t *p_vlc )
2093 {
2094 #ifdef HAVE_HAL
2095     LibHalContext * ctx = NULL;
2096     int i, i_devices;
2097     char **devices = NULL;
2098     char *block_dev = NULL;
2099     dbus_bool_t b_dvd;
2100
2101     DBusConnection *p_connection = NULL;
2102     DBusError       error;
2103
2104     ctx = libhal_ctx_new();
2105     if( !ctx ) return;
2106     dbus_error_init( &error );
2107     p_connection = dbus_bus_get ( DBUS_BUS_SYSTEM, &error );
2108     if( dbus_error_is_set( &error ) || !p_connection )
2109     {
2110         libhal_ctx_free( ctx );
2111         dbus_error_free( &error );
2112         return;
2113     }
2114     libhal_ctx_set_dbus_connection( ctx, p_connection );
2115     if( libhal_ctx_init( ctx, &error ) )
2116     {
2117         if( ( devices = libhal_get_all_devices( ctx, &i_devices, NULL ) ) )
2118         {
2119             for( i = 0; i < i_devices; i++ )
2120             {
2121                 if( !libhal_device_property_exists( ctx, devices[i],
2122                                                 "storage.cdrom.dvd", NULL ) )
2123                 {
2124                     continue;
2125                 }
2126                 b_dvd = libhal_device_get_property_bool( ctx, devices[ i ],
2127                                                  "storage.cdrom.dvd", NULL  );
2128                 block_dev = libhal_device_get_property_string( ctx,
2129                                 devices[ i ], "block.device" , NULL );
2130                 if( b_dvd )
2131                 {
2132                     config_PutPsz( p_vlc, "dvd", block_dev );
2133                 }
2134
2135                 config_PutPsz( p_vlc, "vcd", block_dev );
2136                 config_PutPsz( p_vlc, "cd-audio", block_dev );
2137                 libhal_free_string( block_dev );
2138             }
2139             libhal_free_string_array( devices );
2140         }
2141         libhal_ctx_shutdown( ctx, NULL );
2142         dbus_connection_unref( p_connection );
2143         libhal_ctx_free( ctx );
2144     }
2145     else
2146     {
2147         msg_Warn( p_vlc, "Unable to get HAL device properties" );
2148     }
2149 #else
2150     (void)p_vlc;
2151 #endif /* HAVE_HAL */
2152 }
2153
2154 #include <vlc_avcodec.h>
2155
2156 void vlc_avcodec_mutex (bool acquire)
2157 {
2158     static vlc_mutex_t lock = VLC_STATIC_MUTEX;
2159
2160     if (acquire)
2161         vlc_mutex_lock (&lock);
2162     else
2163         vlc_mutex_unlock (&lock);
2164 }