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