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