]> git.sesse.net Git - vlc/blob - src/libvlc.c
* fix a compilation error
[vlc] / src / libvlc.c
1 /*****************************************************************************
2  * libvlc.c: main libvlc source
3  *****************************************************************************
4  * Copyright (C) 1998-2004 VideoLAN
5  * $Id$
6  *
7  * Authors: Vincent Seguin <seguin@via.ecp.fr>
8  *          Samuel Hocevar <sam@zoy.org>
9  *          Gildas Bazin <gbazin@netcourrier.com>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * Pretend we are a builtin module
28  *****************************************************************************/
29 #define MODULE_NAME main
30 #define MODULE_PATH main
31 #define __BUILTIN__
32
33 /*****************************************************************************
34  * Preamble
35  *****************************************************************************/
36 #include <vlc/vlc.h>
37
38 #ifdef HAVE_ERRNO_H
39 #   include <errno.h>                                              /* ENOMEM */
40 #endif
41 #include <stdio.h>                                              /* sprintf() */
42 #include <string.h>                                            /* strerror() */
43 #include <stdlib.h>                                                /* free() */
44
45 #ifndef WIN32
46 #   include <netinet/in.h>                            /* BSD: struct in_addr */
47 #endif
48
49 #ifdef HAVE_UNISTD_H
50 #   include <unistd.h>
51 #elif defined( WIN32 ) && !defined( UNDER_CE )
52 #   include <io.h>
53 #endif
54
55 #ifdef WIN32                       /* optind, getopt(), included in unistd.h */
56 #   include "extras/getopt.h"
57 #endif
58
59 #ifdef HAVE_LOCALE_H
60 #   include <locale.h>
61 #endif
62
63 #include "vlc_cpu.h"                                        /* CPU detection */
64 #include "os_specific.h"
65
66 #include "vlc_error.h"
67
68 #include "stream_control.h"
69 #include "input_ext-intf.h"
70
71 #include "vlc_playlist.h"
72 #include "vlc_interface.h"
73
74 #include "audio_output.h"
75
76 #include "vlc_video.h"
77 #include "video_output.h"
78
79 #include "stream_output.h"
80
81 #include "libvlc.h"
82
83 /*****************************************************************************
84  * The evil global variable. We handle it with care, don't worry.
85  *****************************************************************************/
86 static libvlc_t   libvlc;
87 static libvlc_t * p_libvlc;
88 static vlc_t *    p_static_vlc;
89
90 /*****************************************************************************
91  * Local prototypes
92  *****************************************************************************/
93 static void SetLanguage   ( char const * );
94 static int  GetFilenames  ( vlc_t *, int, char *[] );
95 static void Usage         ( vlc_t *, char const *psz_module_name );
96 static void ListModules   ( vlc_t * );
97 static void Version       ( void );
98
99 #ifdef WIN32
100 static void ShowConsole   ( void );
101 #endif
102 static int  ConsoleWidth  ( void );
103
104 static int  VerboseCallback( vlc_object_t *, char const *,
105                              vlc_value_t, vlc_value_t, void * );
106
107 /*****************************************************************************
108  * vlc_current_object: return the current object.
109  *****************************************************************************
110  * If i_object is non-zero, return the corresponding object. Otherwise,
111  * return the statically allocated p_vlc object.
112  *****************************************************************************/
113 vlc_t * vlc_current_object( int i_object )
114 {
115     if( i_object )
116     {
117          return vlc_object_get( p_libvlc, i_object );
118     }
119
120     return p_static_vlc;
121 }
122
123 /*****************************************************************************
124  * VLC_Version: return the libvlc version.
125  *****************************************************************************
126  * This function returns full version string (numeric version and codename).
127  *****************************************************************************/
128 char const * VLC_Version( void )
129 {
130     return VERSION_MESSAGE;
131 }
132
133 /*****************************************************************************
134  * VLC_Error: strerror() equivalent
135  *****************************************************************************
136  * This function returns full version string (numeric version and codename).
137  *****************************************************************************/
138 char const * VLC_Error( int i_err )
139 {
140     return vlc_error( i_err );
141 }
142
143 /*****************************************************************************
144  * VLC_Create: allocate a vlc_t structure, and initialize libvlc if needed.
145  *****************************************************************************
146  * This function allocates a vlc_t structure and returns a negative value
147  * in case of failure. Also, the thread system is initialized.
148  *****************************************************************************/
149 int VLC_Create( void )
150 {
151     int i_ret;
152     vlc_t * p_vlc = NULL;
153     vlc_value_t lockval;
154
155     /* &libvlc never changes, so we can safely call this multiple times. */
156     p_libvlc = &libvlc;
157
158     /* vlc_threads_init *must* be the first internal call! No other call is
159      * allowed before the thread system has been initialized. */
160     i_ret = vlc_threads_init( p_libvlc );
161     if( i_ret < 0 )
162     {
163         return i_ret;
164     }
165
166     /* Now that the thread system is initialized, we don't have much, but
167      * at least we have var_Create */
168     var_Create( p_libvlc, "libvlc", VLC_VAR_MUTEX );
169     var_Get( p_libvlc, "libvlc", &lockval );
170     vlc_mutex_lock( lockval.p_address );
171     if( !libvlc.b_ready )
172     {
173         char *psz_env;
174
175         /* Guess what CPU we have */
176         libvlc.i_cpu = CPUCapabilities();
177
178         /* Find verbosity from VLC_VERBOSE environment variable */
179         psz_env = getenv( "VLC_VERBOSE" );
180         libvlc.i_verbose = psz_env ? atoi( psz_env ) : -1;
181
182 #if defined( HAVE_ISATTY ) && !defined( WIN32 )
183         libvlc.b_color = isatty( 2 ); /* 2 is for stderr */
184 #else
185         libvlc.b_color = VLC_FALSE;
186 #endif
187
188         /* Initialize message queue */
189         msg_Create( p_libvlc );
190
191         /* Announce who we are */
192         msg_Dbg( p_libvlc, COPYRIGHT_MESSAGE );
193         msg_Dbg( p_libvlc, "libvlc was configured with %s", CONFIGURE_LINE );
194
195         /* The module bank will be initialized later */
196         libvlc.p_module_bank = NULL;
197
198         libvlc.b_ready = VLC_TRUE;
199     }
200     vlc_mutex_unlock( lockval.p_address );
201     var_Destroy( p_libvlc, "libvlc" );
202
203     /* Allocate a vlc object */
204     p_vlc = vlc_object_create( p_libvlc, VLC_OBJECT_VLC );
205     if( p_vlc == NULL )
206     {
207         return VLC_EGENERIC;
208     }
209     p_vlc->thread_id = 0;
210     vlc_thread_set_priority( p_vlc, VLC_THREAD_PRIORITY_LOW );
211
212     p_vlc->psz_object_name = "root";
213
214     /* Initialize mutexes */
215     vlc_mutex_init( p_vlc, &p_vlc->config_lock );
216 #ifdef SYS_DARWIN
217     vlc_mutex_init( p_vlc, &p_vlc->quicktime_lock );
218 #endif
219
220     /* Store our newly allocated structure in the global list */
221     vlc_object_attach( p_vlc, p_libvlc );
222
223     /* Store data for the non-reentrant API */
224     p_static_vlc = p_vlc;
225
226     return p_vlc->i_object_id;
227 }
228
229 /*****************************************************************************
230  * VLC_Init: initialize a vlc_t structure.
231  *****************************************************************************
232  * This function initializes a previously allocated vlc_t structure:
233  *  - CPU detection
234  *  - gettext initialization
235  *  - message queue, module bank and playlist initialization
236  *  - configuration and commandline parsing
237  *****************************************************************************/
238 int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] )
239 {
240     char         p_capabilities[200];
241     char *       p_tmp;
242     char *       psz_modules;
243     char *       psz_parser;
244     char *       psz_language;
245     vlc_bool_t   b_exit = VLC_FALSE;
246     vlc_t *      p_vlc = vlc_current_object( i_object );
247     module_t    *p_help_module;
248     playlist_t  *p_playlist;
249
250     if( !p_vlc )
251     {
252         return VLC_ENOOBJ;
253     }
254
255     /*
256      * System specific initialization code
257      */
258     system_Init( p_vlc, &i_argc, ppsz_argv );
259
260     /* Get the executable name (similar to the basename command) */
261     if( i_argc > 0 )
262     {
263         p_vlc->psz_object_name = p_tmp = ppsz_argv[ 0 ];
264         while( *p_tmp )
265         {
266             if( *p_tmp == '/' ) p_vlc->psz_object_name = ++p_tmp;
267             else ++p_tmp;
268         }
269     }
270     else
271     {
272         p_vlc->psz_object_name = "vlc";
273     }
274
275     /*
276      * Support for gettext
277      */
278     SetLanguage( "" );
279
280     /* Translate "C" to the language code: "fr", "en_GB", "nl", "ru"... */
281     msg_Dbg( p_vlc, "translation test: code is \"%s\"", _("C") );
282
283     /* Initialize the module bank and load the configuration of the
284      * main module. We need to do this at this stage to be able to display
285      * a short help if required by the user. (short help == main module
286      * options) */
287     module_InitBank( p_vlc );
288
289     /* Hack: insert the help module here */
290     p_help_module = vlc_object_create( p_vlc, VLC_OBJECT_MODULE );
291     if( p_help_module == NULL )
292     {
293         module_EndBank( p_vlc );
294         if( i_object ) vlc_object_release( p_vlc );
295         return VLC_EGENERIC;
296     }
297     p_help_module->psz_object_name = "help";
298     p_help_module->psz_longname = N_("Help options");
299     config_Duplicate( p_help_module, p_help_config );
300     vlc_object_attach( p_help_module, libvlc.p_module_bank );
301     /* End hack */
302
303     if( config_LoadCmdLine( p_vlc, &i_argc, ppsz_argv, VLC_TRUE ) )
304     {
305         vlc_object_detach( p_help_module );
306         config_Free( p_help_module );
307         vlc_object_destroy( p_help_module );
308         module_EndBank( p_vlc );
309         if( i_object ) vlc_object_release( p_vlc );
310         return VLC_EGENERIC;
311     }
312
313     /* Check for short help option */
314     if( config_GetInt( p_vlc, "help" ) )
315     {
316         fprintf( stdout, _("Usage: %s [options] [items]...\n"),
317                          p_vlc->psz_object_name );
318         Usage( p_vlc, "main" );
319         Usage( p_vlc, "help" );
320         b_exit = VLC_TRUE;
321     }
322     /* Check for version option */
323     else if( config_GetInt( p_vlc, "version" ) )
324     {
325         Version();
326         b_exit = VLC_TRUE;
327     }
328
329     /* Set the config file stuff */
330     p_vlc->psz_homedir = config_GetHomeDir();
331     p_vlc->psz_configfile = config_GetPsz( p_vlc, "config" );
332
333     /* Check for plugins cache options */
334     if( config_GetInt( p_vlc, "reset-plugins-cache" ) )
335     {
336         libvlc.p_module_bank->b_cache_delete = VLC_TRUE;
337     }
338
339     /* Hack: remove the help module here */
340     vlc_object_detach( p_help_module );
341     /* End hack */
342
343     if( b_exit )
344     {
345         config_Free( p_help_module );
346         vlc_object_destroy( p_help_module );
347         module_EndBank( p_vlc );
348         if( i_object ) vlc_object_release( p_vlc );
349         return VLC_EEXIT;
350     }
351
352     /* Check for translation config option */
353 #if defined( ENABLE_NLS ) \
354      && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
355
356     /* This ain't really nice to have to reload the config here but it seems
357      * the only way to do it. */
358     config_LoadConfigFile( p_vlc, "main" );
359     config_LoadCmdLine( p_vlc, &i_argc, ppsz_argv, VLC_TRUE );
360
361     /* Check if the user specified a custom language */
362     psz_language = config_GetPsz( p_vlc, "language" );
363     if( psz_language && *psz_language && strcmp( psz_language, "auto" ) )
364     {
365         vlc_bool_t b_cache_delete = libvlc.p_module_bank->b_cache_delete;
366
367         /* Reset the default domain */
368         SetLanguage( psz_language );
369
370         /* Translate "C" to the language code: "fr", "en_GB", "nl", "ru"... */
371         msg_Dbg( p_vlc, "translation test: code is \"%s\"", _("C") );
372
373         textdomain( PACKAGE );
374
375 #if defined( ENABLE_UTF8 )
376         bind_textdomain_codeset( PACKAGE, "UTF-8" );
377 #endif
378
379         module_EndBank( p_vlc );
380         module_InitBank( p_vlc );
381         config_LoadConfigFile( p_vlc, "main" );
382         config_LoadCmdLine( p_vlc, &i_argc, ppsz_argv, VLC_TRUE );
383         libvlc.p_module_bank->b_cache_delete = b_cache_delete;
384     }
385     if( psz_language ) free( psz_language );
386 #endif
387
388     /*
389      * Load the builtins and plugins into the module_bank.
390      * We have to do it before config_Load*() because this also gets the
391      * list of configuration options exported by each module and loads their
392      * default values.
393      */
394     module_LoadBuiltins( p_vlc );
395     module_LoadPlugins( p_vlc );
396     if( p_vlc->b_die )
397     {
398         b_exit = VLC_TRUE;
399     }
400
401     msg_Dbg( p_vlc, "module bank initialized, found %i modules",
402                     libvlc.p_module_bank->i_children );
403
404     /* Hack: insert the help module here */
405     vlc_object_attach( p_help_module, libvlc.p_module_bank );
406     /* End hack */
407
408     /* Check for help on modules */
409     if( (p_tmp = config_GetPsz( p_vlc, "module" )) )
410     {
411         Usage( p_vlc, p_tmp );
412         free( p_tmp );
413         b_exit = VLC_TRUE;
414     }
415     /* Check for long help option */
416     else if( config_GetInt( p_vlc, "longhelp" ) )
417     {
418         Usage( p_vlc, NULL );
419         b_exit = VLC_TRUE;
420     }
421     /* Check for module list option */
422     else if( config_GetInt( p_vlc, "list" ) )
423     {
424         ListModules( p_vlc );
425         b_exit = VLC_TRUE;
426     }
427
428     /* Check for config file options */
429     if( config_GetInt( p_vlc, "reset-config" ) )
430     {
431         vlc_object_detach( p_help_module );
432         config_ResetAll( p_vlc );
433         config_LoadCmdLine( p_vlc, &i_argc, ppsz_argv, VLC_TRUE );
434         config_SaveConfigFile( p_vlc, NULL );
435         vlc_object_attach( p_help_module, libvlc.p_module_bank );
436     }
437     if( config_GetInt( p_vlc, "save-config" ) )
438     {
439         vlc_object_detach( p_help_module );
440         config_LoadConfigFile( p_vlc, NULL );
441         config_LoadCmdLine( p_vlc, &i_argc, ppsz_argv, VLC_TRUE );
442         config_SaveConfigFile( p_vlc, NULL );
443         vlc_object_attach( p_help_module, libvlc.p_module_bank );
444     }
445
446     /* Hack: remove the help module here */
447     vlc_object_detach( p_help_module );
448     /* End hack */
449
450     if( b_exit )
451     {
452         config_Free( p_help_module );
453         vlc_object_destroy( p_help_module );
454         module_EndBank( p_vlc );
455         if( i_object ) vlc_object_release( p_vlc );
456         return VLC_EEXIT;
457     }
458
459     /*
460      * Override default configuration with config file settings
461      */
462     config_LoadConfigFile( p_vlc, NULL );
463
464     /* Hack: insert the help module here */
465     vlc_object_attach( p_help_module, libvlc.p_module_bank );
466     /* End hack */
467
468     /*
469      * Override configuration with command line settings
470      */
471     if( config_LoadCmdLine( p_vlc, &i_argc, ppsz_argv, VLC_FALSE ) )
472     {
473 #ifdef WIN32
474         ShowConsole();
475         /* Pause the console because it's destroyed when we exit */
476         fprintf( stderr, "The command line options couldn't be loaded, check "
477                  "that they are valid.\nPress the RETURN key to continue..." );
478         getchar();
479 #endif
480         vlc_object_detach( p_help_module );
481         config_Free( p_help_module );
482         vlc_object_destroy( p_help_module );
483         module_EndBank( p_vlc );
484         if( i_object ) vlc_object_release( p_vlc );
485         return VLC_EGENERIC;
486     }
487
488     /* Hack: remove the help module here */
489     vlc_object_detach( p_help_module );
490     config_Free( p_help_module );
491     vlc_object_destroy( p_help_module );
492     /* End hack */
493
494     /*
495      * System specific configuration
496      */
497     system_Configure( p_vlc, &i_argc, ppsz_argv );
498
499     /*
500      * Message queue options
501      */
502
503     var_Create( p_vlc, "verbose", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
504     if( config_GetInt( p_vlc, "quiet" ) )
505     {
506         vlc_value_t val;
507         val.i_int = -1;
508         var_Set( p_vlc, "verbose", val );
509     }
510     var_AddCallback( p_vlc, "verbose", VerboseCallback, NULL );
511     var_Change( p_vlc, "verbose", VLC_VAR_TRIGGER_CALLBACKS, NULL, NULL );
512
513     libvlc.b_color = libvlc.b_color && config_GetInt( p_vlc, "color" );
514
515     /*
516      * Output messages that may still be in the queue
517      */
518     msg_Flush( p_vlc );
519
520     /* p_vlc initialization. FIXME ? */
521
522 #if defined( __i386__ )
523     if( !config_GetInt( p_vlc, "mmx" ) )
524         libvlc.i_cpu &= ~CPU_CAPABILITY_MMX;
525     if( !config_GetInt( p_vlc, "3dn" ) )
526         libvlc.i_cpu &= ~CPU_CAPABILITY_3DNOW;
527     if( !config_GetInt( p_vlc, "mmxext" ) )
528         libvlc.i_cpu &= ~CPU_CAPABILITY_MMXEXT;
529     if( !config_GetInt( p_vlc, "sse" ) )
530         libvlc.i_cpu &= ~CPU_CAPABILITY_SSE;
531     if( !config_GetInt( p_vlc, "sse2" ) )
532         libvlc.i_cpu &= ~CPU_CAPABILITY_SSE2;
533 #endif
534 #if defined( __powerpc__ ) || defined( SYS_DARWIN )
535     if( !config_GetInt( p_vlc, "altivec" ) )
536         libvlc.i_cpu &= ~CPU_CAPABILITY_ALTIVEC;
537 #endif
538
539 #define PRINT_CAPABILITY( capability, string )                              \
540     if( libvlc.i_cpu & capability )                                         \
541     {                                                                       \
542         strncat( p_capabilities, string " ",                                \
543                  sizeof(p_capabilities) - strlen(p_capabilities) );         \
544         p_capabilities[sizeof(p_capabilities) - 1] = '\0';                  \
545     }
546
547     p_capabilities[0] = '\0';
548     PRINT_CAPABILITY( CPU_CAPABILITY_486, "486" );
549     PRINT_CAPABILITY( CPU_CAPABILITY_586, "586" );
550     PRINT_CAPABILITY( CPU_CAPABILITY_PPRO, "Pentium Pro" );
551     PRINT_CAPABILITY( CPU_CAPABILITY_MMX, "MMX" );
552     PRINT_CAPABILITY( CPU_CAPABILITY_3DNOW, "3DNow!" );
553     PRINT_CAPABILITY( CPU_CAPABILITY_MMXEXT, "MMXEXT" );
554     PRINT_CAPABILITY( CPU_CAPABILITY_SSE, "SSE" );
555     PRINT_CAPABILITY( CPU_CAPABILITY_SSE2, "SSE2" );
556     PRINT_CAPABILITY( CPU_CAPABILITY_ALTIVEC, "AltiVec" );
557     PRINT_CAPABILITY( CPU_CAPABILITY_FPU, "FPU" );
558     msg_Dbg( p_vlc, "CPU has capabilities %s", p_capabilities );
559
560     /*
561      * Choose the best memcpy module
562      */
563     p_vlc->p_memcpy_module = module_Need( p_vlc, "memcpy", "$memcpy", 0 );
564
565     if( p_vlc->pf_memcpy == NULL )
566     {
567         p_vlc->pf_memcpy = memcpy;
568     }
569
570     if( p_vlc->pf_memset == NULL )
571     {
572         p_vlc->pf_memset = memset;
573     }
574
575     /*
576      * Initialize hotkey handling
577      */
578     var_Create( p_vlc, "key-pressed", VLC_VAR_INTEGER );
579     p_vlc->p_hotkeys = malloc( sizeof(p_hotkeys) );
580     /* Do a copy (we don't need to modify the strings) */
581     memcpy( p_vlc->p_hotkeys, p_hotkeys, sizeof(p_hotkeys) );
582
583     /*
584      * Initialize playlist and get commandline files
585      */
586     p_playlist = playlist_Create( p_vlc );
587     if( !p_playlist )
588     {
589         msg_Err( p_vlc, "playlist initialization failed" );
590         if( p_vlc->p_memcpy_module != NULL )
591         {
592             module_Unneed( p_vlc, p_vlc->p_memcpy_module );
593         }
594         module_EndBank( p_vlc );
595         if( i_object ) vlc_object_release( p_vlc );
596         return VLC_EGENERIC;
597     }
598
599     /*
600      * Load background interfaces
601      */
602     psz_modules = config_GetPsz( p_vlc, "extraintf" );
603     psz_parser = psz_modules;
604     while ( psz_parser && *psz_parser )
605     {
606         char *psz_module, *psz_temp;
607         psz_module = psz_parser;
608         psz_parser = strchr( psz_module, ',' );
609         if ( psz_parser )
610         {
611             *psz_parser = '\0';
612             psz_parser++;
613         }
614         psz_temp = (char *)malloc( strlen(psz_module) + sizeof(",none") );
615         if( psz_temp )
616         {
617             sprintf( psz_temp, "%s,none", psz_module );
618             VLC_AddIntf( 0, psz_temp, VLC_FALSE, VLC_FALSE );
619             free( psz_temp );
620         }
621     }
622     if ( psz_modules )
623     {
624         free( psz_modules );
625     }
626
627     /*
628      * Allways load the hotkeys interface if it exists
629      */
630     VLC_AddIntf( 0, "hotkeys,none", VLC_FALSE, VLC_FALSE );
631
632     /*
633      * FIXME: kludge to use a p_vlc-local variable for the Mozilla plugin
634      */
635     var_Create( p_vlc, "drawable", VLC_VAR_INTEGER );
636     var_Create( p_vlc, "drawableredraw", VLC_VAR_INTEGER );
637     var_Create( p_vlc, "drawablet", VLC_VAR_INTEGER );
638     var_Create( p_vlc, "drawablel", VLC_VAR_INTEGER );
639     var_Create( p_vlc, "drawableb", VLC_VAR_INTEGER );
640     var_Create( p_vlc, "drawabler", VLC_VAR_INTEGER );
641     var_Create( p_vlc, "drawablex", VLC_VAR_INTEGER );
642     var_Create( p_vlc, "drawabley", VLC_VAR_INTEGER );
643     var_Create( p_vlc, "drawablew", VLC_VAR_INTEGER );
644     var_Create( p_vlc, "drawableh", VLC_VAR_INTEGER );
645     var_Create( p_vlc, "drawableportx", VLC_VAR_INTEGER );
646     var_Create( p_vlc, "drawableporty", VLC_VAR_INTEGER );
647
648     /*
649      * Get input filenames given as commandline arguments
650      */
651     GetFilenames( p_vlc, i_argc, ppsz_argv );
652
653     if( i_object ) vlc_object_release( p_vlc );
654     return VLC_SUCCESS;
655 }
656
657 /*****************************************************************************
658  * VLC_AddIntf: add an interface
659  *****************************************************************************
660  * This function opens an interface plugin and runs it. If b_block is set
661  * to 0, VLC_AddIntf will return immediately and let the interface run in a
662  * separate thread. If b_block is set to 1, VLC_AddIntf will continue until
663  * user requests to quit. If b_play is set to 1, VLC_AddIntf will start playing
664  * the playlist when it is completely initialised.
665  *****************************************************************************/
666 int VLC_AddIntf( int i_object, char const *psz_module,
667                  vlc_bool_t b_block, vlc_bool_t b_play )
668 {
669     int i_err;
670     intf_thread_t *p_intf;
671     vlc_t *p_vlc = vlc_current_object( i_object );
672
673     if( !p_vlc )
674     {
675         return VLC_ENOOBJ;
676     }
677
678     /* Try to create the interface */
679     p_intf = intf_Create( p_vlc, psz_module ? psz_module : "$intf" );
680
681     if( p_intf == NULL )
682     {
683         msg_Err( p_vlc, "interface \"%s\" initialization failed", psz_module );
684         if( i_object ) vlc_object_release( p_vlc );
685         return VLC_EGENERIC;
686     }
687
688     /* Interface doesn't handle play on start so do it ourselves */
689     if( !p_intf->b_play && b_play ) VLC_Play( i_object );
690
691     /* Try to run the interface */
692     p_intf->b_play = b_play;
693     p_intf->b_block = b_block;
694     i_err = intf_RunThread( p_intf );
695     if( i_err )
696     {
697         vlc_object_detach( p_intf );
698         intf_Destroy( p_intf );
699         if( i_object ) vlc_object_release( p_vlc );
700         return i_err;
701     }
702
703     if( i_object ) vlc_object_release( p_vlc );
704     return VLC_SUCCESS;
705 }
706
707 /*****************************************************************************
708  * VLC_Die: ask vlc to die.
709  *****************************************************************************
710  * This function sets p_vlc->b_die to VLC_TRUE, but does not do any other
711  * task. It is your duty to call VLC_CleanUp and VLC_Destroy afterwards.
712  *****************************************************************************/
713 int VLC_Die( int i_object )
714 {
715     vlc_t *p_vlc = vlc_current_object( i_object );
716
717     if( !p_vlc )
718     {
719         return VLC_ENOOBJ;
720     }
721
722     p_vlc->b_die = VLC_TRUE;
723
724     if( i_object ) vlc_object_release( p_vlc );
725     return VLC_SUCCESS;
726 }
727
728 /*****************************************************************************
729  * VLC_CleanUp: CleanUp all the intf, playlist, vout, aout
730  *****************************************************************************/
731 int VLC_CleanUp( int i_object )
732 {
733     intf_thread_t      * p_intf;
734     playlist_t         * p_playlist;
735     vout_thread_t      * p_vout;
736     aout_instance_t    * p_aout;
737     announce_handler_t * p_announce;
738     vlc_t *p_vlc = vlc_current_object( i_object );
739
740     /* Check that the handle is valid */
741     if( !p_vlc )
742     {
743         return VLC_ENOOBJ;
744     }
745
746     /*
747      * Ask the interfaces to stop and destroy them
748      */
749     msg_Dbg( p_vlc, "removing all interfaces" );
750     while( (p_intf = vlc_object_find( p_vlc, VLC_OBJECT_INTF, FIND_CHILD )) )
751     {
752         intf_StopThread( p_intf );
753         vlc_object_detach( p_intf );
754         vlc_object_release( p_intf );
755         intf_Destroy( p_intf );
756     }
757
758     /*
759      * Free playlists
760      */
761     msg_Dbg( p_vlc, "removing all playlists" );
762     while( (p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST,
763                                           FIND_CHILD )) )
764     {
765         vlc_object_detach( p_playlist );
766         vlc_object_release( p_playlist );
767         playlist_Destroy( p_playlist );
768     }
769
770     /*
771      * Free video outputs
772      */
773     msg_Dbg( p_vlc, "removing all video outputs" );
774     while( (p_vout = vlc_object_find( p_vlc, VLC_OBJECT_VOUT, FIND_CHILD )) )
775     {
776         vlc_object_detach( p_vout );
777         vlc_object_release( p_vout );
778         vout_Destroy( p_vout );
779     }
780
781     /*
782      * Free audio outputs
783      */
784     msg_Dbg( p_vlc, "removing all audio outputs" );
785     while( (p_aout = vlc_object_find( p_vlc, VLC_OBJECT_AOUT, FIND_CHILD )) )
786     {
787         vlc_object_detach( (vlc_object_t *)p_aout );
788         vlc_object_release( (vlc_object_t *)p_aout );
789         aout_Delete( p_aout );
790     }
791
792     /*
793      * Free announce handler(s?)
794      */
795     msg_Dbg( p_vlc, "removing announce handler" );
796     while( (p_announce = vlc_object_find( p_vlc, VLC_OBJECT_ANNOUNCE,
797                                                  FIND_CHILD ) ) )
798    {
799         vlc_object_detach( p_announce );
800         vlc_object_release( p_announce );
801         announce_HandlerDestroy( p_announce );
802    }
803
804     if( i_object ) vlc_object_release( p_vlc );
805     return VLC_SUCCESS;
806 }
807
808 /*****************************************************************************
809  * VLC_Destroy: Destroy everything.
810  *****************************************************************************
811  * This function requests the running threads to finish, waits for their
812  * termination, and destroys their structure.
813  *****************************************************************************/
814 int VLC_Destroy( int i_object )
815 {
816     vlc_t *p_vlc = vlc_current_object( i_object );
817
818     if( !p_vlc )
819     {
820         return VLC_ENOOBJ;
821     }
822
823     /*
824      * Free allocated memory
825      */
826     if( p_vlc->p_memcpy_module )
827     {
828         module_Unneed( p_vlc, p_vlc->p_memcpy_module );
829         p_vlc->p_memcpy_module = NULL;
830     }
831
832     /*
833      * Free module bank !
834      */
835     module_EndBank( p_vlc );
836
837     if( p_vlc->psz_homedir )
838     {
839         free( p_vlc->psz_homedir );
840         p_vlc->psz_homedir = NULL;
841     }
842
843     if( p_vlc->psz_configfile )
844     {
845         free( p_vlc->psz_configfile );
846         p_vlc->psz_configfile = NULL;
847     }
848
849     if( p_vlc->p_hotkeys )
850     {
851         free( p_vlc->p_hotkeys );
852         p_vlc->p_hotkeys = NULL;
853     }
854
855     /*
856      * System specific cleaning code
857      */
858     system_End( p_vlc );
859
860     /* Destroy mutexes */
861     vlc_mutex_destroy( &p_vlc->config_lock );
862
863     vlc_object_detach( p_vlc );
864
865     /* Release object before destroying it */
866     if( i_object ) vlc_object_release( p_vlc );
867
868     vlc_object_destroy( p_vlc );
869
870     /* Stop thread system: last one out please shut the door! */
871     vlc_threads_end( p_libvlc );
872
873     return VLC_SUCCESS;
874 }
875
876 /*****************************************************************************
877  * VLC_Set: set a vlc variable
878  *****************************************************************************/
879 int VLC_Set( int i_object, char const *psz_var, vlc_value_t value )
880 {
881     vlc_t *p_vlc = vlc_current_object( i_object );
882     int i_ret;
883
884     if( !p_vlc )
885     {
886         return VLC_ENOOBJ;
887     }
888
889     /* FIXME: Temporary hack for Mozilla, if variable starts with conf:: then
890      * we handle it as a configuration variable. Don't tell Gildas :) -- sam */
891     if( !strncmp( psz_var, "conf::", 6 ) )
892     {
893         module_config_t *p_item;
894         char const *psz_newvar = psz_var + 6;
895
896         p_item = config_FindConfig( VLC_OBJECT(p_vlc), psz_newvar );
897
898         if( p_item )
899         {
900             switch( p_item->i_type )
901             {
902                 case CONFIG_ITEM_BOOL:
903                     config_PutInt( p_vlc, psz_newvar, value.b_bool );
904                     break;
905                 case CONFIG_ITEM_INTEGER:
906                     config_PutInt( p_vlc, psz_newvar, value.i_int );
907                     break;
908                 case CONFIG_ITEM_FLOAT:
909                     config_PutFloat( p_vlc, psz_newvar, value.f_float );
910                     break;
911                 default:
912                     config_PutPsz( p_vlc, psz_newvar, value.psz_string );
913                     break;
914             }
915             if( i_object ) vlc_object_release( p_vlc );
916             return VLC_SUCCESS;
917         }
918     }
919
920     i_ret = var_Set( p_vlc, psz_var, value );
921
922     if( i_object ) vlc_object_release( p_vlc );
923     return i_ret;
924 }
925
926 /*****************************************************************************
927  * VLC_Get: get a vlc variable
928  *****************************************************************************/
929 int VLC_Get( int i_object, char const *psz_var, vlc_value_t *p_value )
930 {
931     vlc_t *p_vlc = vlc_current_object( i_object );
932     int i_ret;
933
934     if( !p_vlc )
935     {
936         return VLC_ENOOBJ;
937     }
938
939     i_ret = var_Get( p_vlc, psz_var, p_value );
940
941     if( i_object ) vlc_object_release( p_vlc );
942     return i_ret;
943 }
944
945 /*****************************************************************************
946  * VLC_AddTarget: adds a target for playing.
947  *****************************************************************************
948  * This function adds psz_target to the current playlist. If a playlist does
949  * not exist, it will create one.
950  *****************************************************************************/
951 int VLC_AddTarget( int i_object, char const *psz_target,
952                    char const **ppsz_options, int i_options,
953                    int i_mode, int i_pos )
954 {
955     int i_err;
956     playlist_t *p_playlist;
957     vlc_t *p_vlc = vlc_current_object( i_object );
958
959     if( !p_vlc )
960     {
961         return VLC_ENOOBJ;
962     }
963
964     p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, FIND_ANYWHERE );
965
966     if( p_playlist == NULL )
967     {
968         msg_Dbg( p_vlc, "no playlist present, creating one" );
969         p_playlist = playlist_Create( p_vlc );
970
971         if( p_playlist == NULL )
972         {
973             if( i_object ) vlc_object_release( p_vlc );
974             return VLC_EGENERIC;
975         }
976
977         vlc_object_yield( p_playlist );
978     }
979
980     i_err = playlist_AddExt( p_playlist, psz_target, psz_target,
981                              i_mode, i_pos, -1, ppsz_options, i_options);
982
983     vlc_object_release( p_playlist );
984
985     if( i_object ) vlc_object_release( p_vlc );
986     return i_err;
987 }
988
989 /*****************************************************************************
990  * VLC_Play: play
991  *****************************************************************************/
992 int VLC_Play( int i_object )
993 {
994     playlist_t * p_playlist;
995     vlc_t *p_vlc = vlc_current_object( i_object );
996
997     /* Check that the handle is valid */
998     if( !p_vlc )
999     {
1000         return VLC_ENOOBJ;
1001     }
1002
1003     p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, FIND_CHILD );
1004
1005     if( !p_playlist )
1006     {
1007         if( i_object ) vlc_object_release( p_vlc );
1008         return VLC_ENOOBJ;
1009     }
1010
1011     playlist_Play( p_playlist );
1012     vlc_object_release( p_playlist );
1013
1014     if( i_object ) vlc_object_release( p_vlc );
1015     return VLC_SUCCESS;
1016 }
1017
1018 /*****************************************************************************
1019  * VLC_Pause: toggle pause
1020  *****************************************************************************/
1021 int VLC_Pause( int i_object )
1022 {
1023     playlist_t * p_playlist;
1024     vlc_t *p_vlc = vlc_current_object( i_object );
1025
1026     /* Check that the handle is valid */
1027     if( !p_vlc )
1028     {
1029         return VLC_ENOOBJ;
1030     }
1031
1032     p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, FIND_CHILD );
1033
1034     if( !p_playlist )
1035     {
1036         if( i_object ) vlc_object_release( p_vlc );
1037         return VLC_ENOOBJ;
1038     }
1039
1040     playlist_Pause( p_playlist );
1041     vlc_object_release( p_playlist );
1042
1043     if( i_object ) vlc_object_release( p_vlc );
1044     return VLC_SUCCESS;
1045 }
1046
1047 /*****************************************************************************
1048  * VLC_Pause: toggle pause
1049  *****************************************************************************/
1050 int VLC_Stop( int i_object )
1051 {
1052     playlist_t * p_playlist;
1053     vlc_t *p_vlc = vlc_current_object( i_object );
1054
1055     /* Check that the handle is valid */
1056     if( !p_vlc )
1057     {
1058         return VLC_ENOOBJ;
1059     }
1060
1061     p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, FIND_CHILD );
1062
1063     if( !p_playlist )
1064     {
1065         if( i_object ) vlc_object_release( p_vlc );
1066         return VLC_ENOOBJ;
1067     }
1068
1069     playlist_Stop( p_playlist );
1070     vlc_object_release( p_playlist );
1071
1072     if( i_object ) vlc_object_release( p_vlc );
1073     return VLC_SUCCESS;
1074 }
1075
1076 /*****************************************************************************
1077  * VLC_IsPlaying: Query for Playlist Status
1078  *****************************************************************************/
1079 vlc_bool_t VLC_IsPlaying( int i_object )
1080 {
1081     playlist_t * p_playlist;
1082     vlc_bool_t   b_playing;
1083
1084     vlc_t *p_vlc = vlc_current_object( i_object );
1085
1086     /* Check that the handle is valid */
1087     if( !p_vlc )
1088     {
1089         return VLC_ENOOBJ;
1090     }
1091
1092     p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, FIND_CHILD );
1093
1094     if( !p_playlist )
1095     {
1096         if( i_object ) vlc_object_release( p_vlc );
1097         return VLC_ENOOBJ;
1098     }
1099
1100     b_playing = playlist_IsPlaying( p_playlist );
1101
1102     vlc_object_release( p_playlist );
1103
1104     if( i_object ) vlc_object_release( p_vlc );
1105
1106     return b_playing;
1107 }
1108
1109 /*****************************************************************************
1110  * VLC_ClearPlaylist: Empty the playlist
1111  *****************************************************************************/
1112 int VLC_ClearPlaylist( int i_object )
1113 {
1114     int i_err;
1115     playlist_t * p_playlist;
1116     vlc_t *p_vlc = vlc_current_object( i_object );
1117
1118     /* Check that the handle is valid */
1119     if( !p_vlc )
1120     {
1121         return VLC_ENOOBJ;
1122     }
1123
1124     p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, FIND_CHILD );
1125
1126     if( !p_playlist )
1127     {
1128         if( i_object ) vlc_object_release( p_vlc );
1129         return VLC_ENOOBJ;
1130     }
1131
1132     i_err = playlist_Clear(p_playlist);
1133
1134     vlc_object_release( p_playlist );
1135
1136     if( i_object ) vlc_object_release( p_vlc );
1137     return i_err;
1138 }
1139
1140 /*****************************************************************************
1141  * VLC_FullScreen: toggle fullscreen mode
1142  *****************************************************************************/
1143 int VLC_FullScreen( int i_object )
1144 {
1145     vout_thread_t *p_vout;
1146     vlc_t *p_vlc = vlc_current_object( i_object );
1147
1148     if( !p_vlc )
1149     {
1150         return VLC_ENOOBJ;
1151     }
1152
1153     p_vout = vlc_object_find( p_vlc, VLC_OBJECT_VOUT, FIND_CHILD );
1154
1155     if( !p_vout )
1156     {
1157         if( i_object ) vlc_object_release( p_vlc );
1158         return VLC_ENOOBJ;
1159     }
1160
1161     p_vout->i_changes |= VOUT_FULLSCREEN_CHANGE;
1162     vlc_object_release( p_vout );
1163
1164     if( i_object ) vlc_object_release( p_vlc );
1165     return VLC_SUCCESS;
1166 }
1167
1168 /* following functions are local */
1169
1170 /*****************************************************************************
1171  * SetLanguage: set the interface language.
1172  *****************************************************************************
1173  * We set the LC_MESSAGES locale category for interface messages and buttons,
1174  * as well as the LC_CTYPE category for string sorting and possible wide
1175  * character support.
1176  *****************************************************************************/
1177 static void SetLanguage ( char const *psz_lang )
1178 {
1179 #if defined( ENABLE_NLS ) \
1180      && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
1181
1182     char *          psz_path;
1183 #if defined( SYS_DARWIN ) || defined ( WIN32 ) || defined( SYS_BEOS )
1184     char            psz_tmp[1024];
1185 #endif
1186
1187     if( psz_lang && !*psz_lang )
1188     {
1189 #   if defined( HAVE_LC_MESSAGES )
1190         setlocale( LC_MESSAGES, psz_lang );
1191 #   endif
1192         setlocale( LC_CTYPE, psz_lang );
1193     }
1194     else if( psz_lang )
1195     {
1196 #ifdef SYS_DARWIN
1197         /* I need that under Darwin, please check it doesn't disturb
1198          * other platforms. --Meuuh */
1199         setenv( "LANG", psz_lang, 1 );
1200
1201 #elif defined( SYS_BEOS ) || defined( WIN32 )
1202         /* We set LC_ALL manually because it is the only way to set
1203          * the language at runtime under eg. Windows. Beware that this
1204          * makes the environment unconsistent when libvlc is unloaded and
1205          * should probably be moved to a safer place like vlc.c. */
1206         static char psz_lcall[20];
1207         snprintf( psz_lcall, 19, "LC_ALL=%s", psz_lang );
1208         psz_lcall[19] = '\0';
1209         putenv( psz_lcall );
1210 #endif
1211
1212         setlocale( LC_ALL, psz_lang );
1213     }
1214
1215     /* Specify where to find the locales for current domain */
1216 #if !defined( SYS_DARWIN ) && !defined( WIN32 ) && !defined( SYS_BEOS )
1217     psz_path = LOCALEDIR;
1218 #else
1219     snprintf( psz_tmp, sizeof(psz_tmp), "%s/%s", libvlc.psz_vlcpath,
1220               "locale" );
1221     psz_path = psz_tmp;
1222 #endif
1223     if( !bindtextdomain( PACKAGE, psz_path ) )
1224     {
1225         fprintf( stderr, "warning: no domain %s in directory %s\n",
1226                  PACKAGE, psz_path );
1227     }
1228
1229     /* Set the default domain */
1230     textdomain( PACKAGE );
1231
1232 #if defined( ENABLE_UTF8 )
1233     bind_textdomain_codeset( PACKAGE, "UTF-8" );
1234 #endif
1235
1236 #endif
1237 }
1238
1239 /*****************************************************************************
1240  * GetFilenames: parse command line options which are not flags
1241  *****************************************************************************
1242  * Parse command line for input files as well as their associated options.
1243  * An option always follows its associated input and begins with a ":".
1244  *****************************************************************************/
1245 static int GetFilenames( vlc_t *p_vlc, int i_argc, char *ppsz_argv[] )
1246 {
1247     int i_opt, i_options;
1248
1249     /* We assume that the remaining parameters are filenames
1250      * and their input options */
1251     for( i_opt = i_argc - 1; i_opt >= optind; i_opt-- )
1252     {
1253         i_options = 0;
1254
1255         /* Count the input options */
1256         while( *ppsz_argv[ i_opt ] == ':' && i_opt > optind )
1257         {
1258             i_options++;
1259             i_opt--;
1260         }
1261
1262         /* TODO: write an internal function of this one, to avoid
1263          *       unnecessary lookups. */
1264         VLC_AddTarget( p_vlc->i_object_id, ppsz_argv[ i_opt ],
1265                        (char const **)( i_options ? &ppsz_argv[i_opt + 1] :
1266                                         NULL ), i_options,
1267                        PLAYLIST_INSERT, 0 );
1268     }
1269
1270     return VLC_SUCCESS;
1271 }
1272
1273 /*****************************************************************************
1274  * Usage: print program usage
1275  *****************************************************************************
1276  * Print a short inline help. Message interface is initialized at this stage.
1277  *****************************************************************************/
1278 static void Usage( vlc_t *p_this, char const *psz_module_name )
1279 {
1280 #define FORMAT_STRING "  %s --%s%s%s%s%s%s%s "
1281     /* short option ------'    |     | | | |  | |
1282      * option name ------------'     | | | |  | |
1283      * <bra -------------------------' | | |  | |
1284      * option type or "" --------------' | |  | |
1285      * ket> -----------------------------' |  | |
1286      * padding spaces ---------------------'  | |
1287      * comment -------------------------------' |
1288      * comment suffix --------------------------'
1289      *
1290      * The purpose of having bra and ket is that we might i18n them as well.
1291      */
1292 #define LINE_START 8
1293 #define PADDING_SPACES 25
1294     vlc_list_t *p_list;
1295     module_t *p_parser;
1296     module_config_t *p_item;
1297     char psz_spaces[PADDING_SPACES+LINE_START+1];
1298     char psz_format[sizeof(FORMAT_STRING)];
1299     char psz_buffer[1000];
1300     char psz_short[4];
1301     int i_index;
1302     int i_width = ConsoleWidth() - (PADDING_SPACES+LINE_START+1);
1303     vlc_bool_t b_advanced = config_GetInt( p_this, "advanced" );
1304
1305     memset( psz_spaces, ' ', PADDING_SPACES+LINE_START );
1306     psz_spaces[PADDING_SPACES+LINE_START] = '\0';
1307
1308     strcpy( psz_format, FORMAT_STRING );
1309
1310 #ifdef WIN32
1311     ShowConsole();
1312 #endif
1313
1314     /* List all modules */
1315     p_list = vlc_list_find( p_this, VLC_OBJECT_MODULE, FIND_ANYWHERE );
1316
1317     /* Enumerate the config for each module */
1318     for( i_index = 0; i_index < p_list->i_count; i_index++ )
1319     {
1320         vlc_bool_t b_help_module;
1321
1322         p_parser = (module_t *)p_list->p_values[i_index].p_object ;
1323
1324         if( psz_module_name && strcmp( psz_module_name,
1325                                        p_parser->psz_object_name ) )
1326         {
1327             continue;
1328         }
1329
1330         /* Ignore modules without config options */
1331         if( !p_parser->i_config_items )
1332         {
1333             continue;
1334         }
1335
1336         /* Ignore modules with only advanced config options if requested */
1337         if( !b_advanced )
1338         {
1339             for( p_item = p_parser->p_config;
1340                  p_item->i_type != CONFIG_HINT_END;
1341                  p_item++ )
1342             {
1343                 if( (p_item->i_type & CONFIG_ITEM) &&
1344                     !p_item->b_advanced ) break;
1345             }
1346             if( p_item->i_type == CONFIG_HINT_END ) continue;
1347         }
1348
1349         /* Print name of module */
1350         if( strcmp( "main", p_parser->psz_object_name ) )
1351         fprintf( stdout, "\n %s\n", p_parser->psz_longname );
1352
1353         b_help_module = !strcmp( "help", p_parser->psz_object_name );
1354
1355         /* Print module options */
1356         for( p_item = p_parser->p_config;
1357              p_item->i_type != CONFIG_HINT_END;
1358              p_item++ )
1359         {
1360             char *psz_text;
1361             char *psz_bra = NULL, *psz_type = NULL, *psz_ket = NULL;
1362             char *psz_suf = "", *psz_prefix = NULL;
1363             int i;
1364
1365             /* Skip advanced options if requested */
1366             if( p_item->b_advanced && !b_advanced )
1367             {
1368                 continue;
1369             }
1370
1371             switch( p_item->i_type )
1372             {
1373             case CONFIG_HINT_CATEGORY:
1374             case CONFIG_HINT_USAGE:
1375                 if( !strcmp( "main", p_parser->psz_object_name ) )
1376                 fprintf( stdout, "\n %s\n", p_item->psz_text );
1377                 break;
1378
1379             case CONFIG_ITEM_STRING:
1380             case CONFIG_ITEM_FILE:
1381             case CONFIG_ITEM_DIRECTORY:
1382             case CONFIG_ITEM_MODULE: /* We could also have "=<" here */
1383                 if( !p_item->ppsz_list )
1384                 {
1385                     psz_bra = " <"; psz_type = _("string"); psz_ket = ">";
1386                     break;
1387                 }
1388                 else
1389                 {
1390                     psz_bra = " {";
1391                     psz_type = psz_buffer;
1392                     psz_type[0] = '\0';
1393                     for( i = 0; p_item->ppsz_list[i]; i++ )
1394                     {
1395                         if( i ) strcat( psz_type, "," );
1396                         strcat( psz_type, p_item->ppsz_list[i] );
1397                     }
1398                     psz_ket = "}";
1399                     break;
1400                 }
1401             case CONFIG_ITEM_INTEGER:
1402             case CONFIG_ITEM_KEY: /* FIXME: do something a bit more clever */
1403                 psz_bra = " <"; psz_type = _("integer"); psz_ket = ">";
1404                 break;
1405             case CONFIG_ITEM_FLOAT:
1406                 psz_bra = " <"; psz_type = _("float"); psz_ket = ">";
1407                 break;
1408             case CONFIG_ITEM_BOOL:
1409                 psz_bra = ""; psz_type = ""; psz_ket = "";
1410                 if( !b_help_module )
1411                 {
1412                     psz_suf = p_item->i_value ? _(" (default enabled)") :
1413                                                 _(" (default disabled)");
1414                 }
1415                 break;
1416             }
1417
1418             if( !psz_type )
1419             {
1420                 continue;
1421             }
1422
1423             /* Add short option if any */
1424             if( p_item->i_short )
1425             {
1426                 sprintf( psz_short, "-%c,", p_item->i_short );
1427             }
1428             else
1429             {
1430                 strcpy( psz_short, "   " );
1431             }
1432
1433             i = PADDING_SPACES - strlen( p_item->psz_name )
1434                  - strlen( psz_bra ) - strlen( psz_type )
1435                  - strlen( psz_ket ) - 1;
1436
1437             if( p_item->i_type == CONFIG_ITEM_BOOL && !b_help_module )
1438             {
1439                 /* If option is of type --foo-bar, we print its counterpart
1440                  * as --no-foo-bar, but if it is of type --foobar (without
1441                  * dashes in the name) we print it as --nofoobar. Both
1442                  * values are of course valid, only the display changes. */
1443                 psz_prefix = strchr( p_item->psz_name, '-' ) ? ", --no-"
1444                                                              : ", --no";
1445                 i -= strlen( p_item->psz_name ) + strlen( psz_prefix );
1446             }
1447
1448             if( i < 0 )
1449             {
1450                 psz_spaces[0] = '\n';
1451                 i = 0;
1452             }
1453             else
1454             {
1455                 psz_spaces[i] = '\0';
1456             }
1457
1458             if( p_item->i_type == CONFIG_ITEM_BOOL && !b_help_module )
1459             {
1460                 fprintf( stdout, psz_format, psz_short, p_item->psz_name,
1461                          psz_prefix, p_item->psz_name, psz_bra, psz_type,
1462                          psz_ket, psz_spaces );
1463             }
1464             else
1465             {
1466                 fprintf( stdout, psz_format, psz_short, p_item->psz_name,
1467                          "", "", psz_bra, psz_type, psz_ket, psz_spaces );
1468             }
1469
1470             psz_spaces[i] = ' ';
1471
1472             /* We wrap the rest of the output */
1473             sprintf( psz_buffer, "%s%s", p_item->psz_text, psz_suf );
1474             psz_text = psz_buffer;
1475             while( *psz_text )
1476             {
1477                 char *psz_parser, *psz_word;
1478                 int i_end = strlen( psz_text );
1479
1480                 /* If the remaining text fits in a line, print it. */
1481                 if( i_end <= i_width )
1482                 {
1483                     fprintf( stdout, "%s\n", psz_text );
1484                     break;
1485                 }
1486
1487                 /* Otherwise, eat as many words as possible */
1488                 psz_parser = psz_text;
1489                 do
1490                 {
1491                     psz_word = psz_parser;
1492                     psz_parser = strchr( psz_word, ' ' );
1493                     /* If no space was found, we reached the end of the text
1494                      * block; otherwise, we skip the space we just found. */
1495                     psz_parser = psz_parser ? psz_parser + 1
1496                                             : psz_text + i_end;
1497
1498                 } while( psz_parser - psz_text <= i_width );
1499
1500                 /* We cut a word in one of these cases:
1501                  *  - it's the only word in the line and it's too long.
1502                  *  - we used less than 80% of the width and the word we are
1503                  *    going to wrap is longer than 40% of the width, and even
1504                  *    if the word would have fit in the next line. */
1505                 if( psz_word == psz_text
1506                      || ( psz_word - psz_text < 80 * i_width / 100
1507                            && psz_parser - psz_word > 40 * i_width / 100 ) )
1508                 {
1509                     char c = psz_text[i_width];
1510                     psz_text[i_width] = '\0';
1511                     fprintf( stdout, "%s\n%s", psz_text, psz_spaces );
1512                     psz_text += i_width;
1513                     psz_text[0] = c;
1514                 }
1515                 else
1516                 {
1517                     psz_word[-1] = '\0';
1518                     fprintf( stdout, "%s\n%s", psz_text, psz_spaces );
1519                     psz_text = psz_word;
1520                 }
1521             }
1522         }
1523     }
1524
1525     /* Release the module list */
1526     vlc_list_release( p_list );
1527
1528 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1529     fprintf( stdout, _("\nPress the RETURN key to continue...\n") );
1530     getchar();
1531 #endif
1532 }
1533
1534 /*****************************************************************************
1535  * ListModules: list the available modules with their description
1536  *****************************************************************************
1537  * Print a list of all available modules (builtins and plugins) and a short
1538  * description for each one.
1539  *****************************************************************************/
1540 static void ListModules( vlc_t *p_this )
1541 {
1542     vlc_list_t *p_list;
1543     module_t *p_parser;
1544     char psz_spaces[22];
1545     int i_index;
1546
1547     memset( psz_spaces, ' ', 22 );
1548
1549 #ifdef WIN32
1550     ShowConsole();
1551 #endif
1552
1553     /* Usage */
1554     fprintf( stdout, _("Usage: %s [options] [items]...\n\n"),
1555                      p_this->p_vlc->psz_object_name );
1556
1557     fprintf( stdout, _("[module]              [description]\n") );
1558
1559     /* List all modules */
1560     p_list = vlc_list_find( p_this, VLC_OBJECT_MODULE, FIND_ANYWHERE );
1561
1562     /* Enumerate each module */
1563     for( i_index = 0; i_index < p_list->i_count; i_index++ )
1564     {
1565         int i;
1566
1567         p_parser = (module_t *)p_list->p_values[i_index].p_object ;
1568
1569         /* Nasty hack, but right now I'm too tired to think about a nice
1570          * solution */
1571         i = 22 - strlen( p_parser->psz_object_name ) - 1;
1572         if( i < 0 ) i = 0;
1573         psz_spaces[i] = 0;
1574
1575         fprintf( stdout, "  %s%s %s\n", p_parser->psz_object_name,
1576                          psz_spaces, p_parser->psz_longname );
1577
1578         psz_spaces[i] = ' ';
1579     }
1580
1581     vlc_list_release( p_list );
1582
1583 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1584     fprintf( stdout, _("\nPress the RETURN key to continue...\n") );
1585     getchar();
1586 #endif
1587 }
1588
1589 /*****************************************************************************
1590  * Version: print complete program version
1591  *****************************************************************************
1592  * Print complete program version and build number.
1593  *****************************************************************************/
1594 static void Version( void )
1595 {
1596 #ifdef WIN32
1597     ShowConsole();
1598 #endif
1599
1600     fprintf( stdout, VERSION_MESSAGE "\n" );
1601     fprintf( stdout,
1602       _("This program comes with NO WARRANTY, to the extent permitted by "
1603         "law.\nYou may redistribute it under the terms of the GNU General "
1604         "Public License;\nsee the file named COPYING for details.\n"
1605         "Written by the VideoLAN team; see the AUTHORS file.\n") );
1606
1607 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1608     fprintf( stdout, _("\nPress the RETURN key to continue...\n") );
1609     getchar();
1610 #endif
1611 }
1612
1613 /*****************************************************************************
1614  * ShowConsole: On Win32, create an output console for debug messages
1615  *****************************************************************************
1616  * This function is useful only on Win32.
1617  *****************************************************************************/
1618 #ifdef WIN32 /*  */
1619 static void ShowConsole( void )
1620 {
1621 #   ifndef UNDER_CE
1622     AllocConsole();
1623     freopen( "CONOUT$", "w", stdout );
1624     freopen( "CONOUT$", "w", stderr );
1625     freopen( "CONIN$", "r", stdin );
1626 #   endif
1627     return;
1628 }
1629 #endif
1630
1631 /*****************************************************************************
1632  * ConsoleWidth: Return the console width in characters
1633  *****************************************************************************
1634  * We use the stty shell command to get the console width; if this fails or
1635  * if the width is less than 80, we default to 80.
1636  *****************************************************************************/
1637 static int ConsoleWidth( void )
1638 {
1639     int i_width = 80;
1640
1641 #ifndef WIN32
1642     char buf[20], *psz_parser;
1643     FILE *file;
1644     int i_ret;
1645
1646     file = popen( "stty size 2>/dev/null", "r" );
1647     if( file )
1648     {
1649         i_ret = fread( buf, 1, 20, file );
1650         if( i_ret > 0 )
1651         {
1652             buf[19] = '\0';
1653             psz_parser = strchr( buf, ' ' );
1654             if( psz_parser )
1655             {
1656                 i_ret = atoi( psz_parser + 1 );
1657                 if( i_ret >= 80 )
1658                 {
1659                     i_width = i_ret;
1660                 }
1661             }
1662         }
1663
1664         pclose( file );
1665     }
1666 #endif
1667
1668     return i_width;
1669 }
1670
1671 static int VerboseCallback( vlc_object_t *p_this, const char *psz_variable,
1672                      vlc_value_t old_val, vlc_value_t new_val, void *param)
1673 {
1674     vlc_t *p_vlc = (vlc_t *)p_this;
1675
1676     if( new_val.i_int >= -1 )
1677     {
1678         p_vlc->p_libvlc->i_verbose = __MIN( new_val.i_int, 2 );
1679     }
1680     return VLC_SUCCESS;
1681 }