]> git.sesse.net Git - vlc/blob - src/libvlc.c
* modules/access/dvdread.c: backport of #11298.
[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@videolan.org>
10  *          Derk-Jan Hartman <hartman at videolan dot org>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
25  *****************************************************************************/
26
27 /*****************************************************************************
28  * Pretend we are a builtin module
29  *****************************************************************************/
30 #define MODULE_NAME main
31 #define MODULE_PATH main
32 #define __BUILTIN__
33
34 /*****************************************************************************
35  * Preamble
36  *****************************************************************************/
37 #include <vlc/vlc.h>
38 #include <vlc/input.h>
39
40 #include <errno.h>                                                 /* ENOMEM */
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 #ifdef HAVE_HAL
64 #   include <hal/libhal.h>
65 #endif
66
67 #include "vlc_cpu.h"                                        /* CPU detection */
68 #include "os_specific.h"
69
70 #include "vlc_error.h"
71
72 #include "vlc_playlist.h"
73 #include "vlc_interface.h"
74
75 #include "audio_output.h"
76
77 #include "vlc_video.h"
78 #include "video_output.h"
79
80 #include "stream_output.h"
81
82 #include "libvlc.h"
83
84 /*****************************************************************************
85  * The evil global variable. We handle it with care, don't worry.
86  *****************************************************************************/
87 static libvlc_t   libvlc;
88 static libvlc_t * p_libvlc;
89 static vlc_t *    p_static_vlc;
90
91 /*****************************************************************************
92  * Local prototypes
93  *****************************************************************************/
94 static void SetLanguage   ( char const * );
95 static int  GetFilenames  ( vlc_t *, int, char *[] );
96 static void Help          ( vlc_t *, char const *psz_help_name );
97 static void Usage         ( vlc_t *, char const *psz_module_name );
98 static void ListModules   ( vlc_t * );
99 static void Version       ( void );
100
101 #ifdef WIN32
102 static void ShowConsole   ( void );
103 static void PauseConsole  ( void );
104 #endif
105 static int  ConsoleWidth  ( void );
106
107 static int  VerboseCallback( vlc_object_t *, char const *,
108                              vlc_value_t, vlc_value_t, void * );
109
110 static void InitDeviceValues( vlc_t * );
111
112 /*****************************************************************************
113  * vlc_current_object: return the current object.
114  *****************************************************************************
115  * If i_object is non-zero, return the corresponding object. Otherwise,
116  * return the statically allocated p_vlc object.
117  *****************************************************************************/
118 vlc_t * vlc_current_object( int i_object )
119 {
120     if( i_object )
121     {
122          return vlc_object_get( p_libvlc, i_object );
123     }
124
125     return p_static_vlc;
126 }
127
128 /*****************************************************************************
129  * VLC_Version: return the libvlc version.
130  *****************************************************************************
131  * This function returns full version string (numeric version and codename).
132  *****************************************************************************/
133 char const * VLC_Version( void )
134 {
135     return VERSION_MESSAGE;
136 }
137
138 /*****************************************************************************
139  * VLC_Error: strerror() equivalent
140  *****************************************************************************
141  * This function returns full version string (numeric version and codename).
142  *****************************************************************************/
143 char const * VLC_Error( int i_err )
144 {
145     return vlc_error( i_err );
146 }
147
148 /*****************************************************************************
149  * VLC_Create: allocate a vlc_t structure, and initialize libvlc if needed.
150  *****************************************************************************
151  * This function allocates a vlc_t structure and returns a negative value
152  * in case of failure. Also, the thread system is initialized.
153  *****************************************************************************/
154 int VLC_Create( void )
155 {
156     int i_ret;
157     vlc_t * p_vlc = NULL;
158     vlc_value_t lockval;
159
160     /* &libvlc never changes, so we can safely call this multiple times. */
161     p_libvlc = &libvlc;
162
163     /* vlc_threads_init *must* be the first internal call! No other call is
164      * allowed before the thread system has been initialized. */
165     i_ret = vlc_threads_init( p_libvlc );
166     if( i_ret < 0 )
167     {
168         return i_ret;
169     }
170
171     /* Now that the thread system is initialized, we don't have much, but
172      * at least we have var_Create */
173     var_Create( p_libvlc, "libvlc", VLC_VAR_MUTEX );
174     var_Get( p_libvlc, "libvlc", &lockval );
175     vlc_mutex_lock( lockval.p_address );
176     if( !libvlc.b_ready )
177     {
178         char *psz_env;
179
180         /* Guess what CPU we have */
181         libvlc.i_cpu = CPUCapabilities();
182
183         /* Find verbosity from VLC_VERBOSE environment variable */
184         psz_env = getenv( "VLC_VERBOSE" );
185         libvlc.i_verbose = psz_env ? atoi( psz_env ) : -1;
186
187 #if defined( HAVE_ISATTY ) && !defined( WIN32 )
188         libvlc.b_color = isatty( 2 ); /* 2 is for stderr */
189 #else
190         libvlc.b_color = VLC_FALSE;
191 #endif
192
193         /* Initialize message queue */
194         msg_Create( p_libvlc );
195
196         /* Announce who we are */
197         msg_Dbg( p_libvlc, COPYRIGHT_MESSAGE );
198         msg_Dbg( p_libvlc, "libvlc was configured with %s", CONFIGURE_LINE );
199
200         /* The module bank will be initialized later */
201         libvlc.p_module_bank = NULL;
202
203         libvlc.b_ready = VLC_TRUE;
204     }
205     vlc_mutex_unlock( lockval.p_address );
206     var_Destroy( p_libvlc, "libvlc" );
207
208     /* Allocate a vlc object */
209     p_vlc = vlc_object_create( p_libvlc, VLC_OBJECT_VLC );
210     if( p_vlc == NULL )
211     {
212         return VLC_EGENERIC;
213     }
214     p_vlc->thread_id = 0;
215
216     p_vlc->psz_object_name = "root";
217
218     /* Initialize mutexes */
219     vlc_mutex_init( p_vlc, &p_vlc->config_lock );
220 #ifdef SYS_DARWIN
221     vlc_mutex_init( p_vlc, &p_vlc->quicktime_lock );
222     vlc_thread_set_priority( p_vlc, VLC_THREAD_PRIORITY_LOW );
223 #endif
224
225     /* Store our newly allocated structure in the global list */
226     vlc_object_attach( p_vlc, p_libvlc );
227
228     /* Store data for the non-reentrant API */
229     p_static_vlc = p_vlc;
230
231     return p_vlc->i_object_id;
232 }
233
234 /*****************************************************************************
235  * VLC_Init: initialize a vlc_t structure.
236  *****************************************************************************
237  * This function initializes a previously allocated vlc_t structure:
238  *  - CPU detection
239  *  - gettext initialization
240  *  - message queue, module bank and playlist initialization
241  *  - configuration and commandline parsing
242  *****************************************************************************/
243 int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] )
244 {
245     char         p_capabilities[200];
246     char *       p_tmp;
247     char *       psz_modules;
248     char *       psz_parser;
249     char *       psz_control;
250     char *       psz_language;
251     vlc_bool_t   b_exit = VLC_FALSE;
252     vlc_t *      p_vlc = vlc_current_object( i_object );
253     module_t    *p_help_module;
254     playlist_t  *p_playlist;
255
256     if( !p_vlc )
257     {
258         return VLC_ENOOBJ;
259     }
260
261     /*
262      * System specific initialization code
263      */
264     system_Init( p_vlc, &i_argc, ppsz_argv );
265
266     /* Get the executable name (similar to the basename command) */
267     if( i_argc > 0 )
268     {
269         p_vlc->psz_object_name = p_tmp = ppsz_argv[ 0 ];
270         while( *p_tmp )
271         {
272             if( *p_tmp == '/' ) p_vlc->psz_object_name = ++p_tmp;
273             else ++p_tmp;
274         }
275     }
276     else
277     {
278         p_vlc->psz_object_name = "vlc";
279     }
280
281     /*
282      * Support for gettext
283      */
284     SetLanguage( "" );
285
286     /* Translate "C" to the language code: "fr", "en_GB", "nl", "ru"... */
287     msg_Dbg( p_vlc, "translation test: code is \"%s\"", _("C") );
288
289     /* Initialize the module bank and load the configuration of the
290      * main module. We need to do this at this stage to be able to display
291      * a short help if required by the user. (short help == main module
292      * options) */
293     module_InitBank( p_vlc );
294
295     /* Hack: insert the help module here */
296     p_help_module = vlc_object_create( p_vlc, VLC_OBJECT_MODULE );
297     if( p_help_module == NULL )
298     {
299         module_EndBank( p_vlc );
300         if( i_object ) vlc_object_release( p_vlc );
301         return VLC_EGENERIC;
302     }
303     p_help_module->psz_object_name = "help";
304     p_help_module->psz_longname = N_("Help options");
305     config_Duplicate( p_help_module, p_help_config );
306     vlc_object_attach( p_help_module, libvlc.p_module_bank );
307     /* End hack */
308
309     if( config_LoadCmdLine( p_vlc, &i_argc, ppsz_argv, VLC_TRUE ) )
310     {
311         vlc_object_detach( p_help_module );
312         config_Free( p_help_module );
313         vlc_object_destroy( p_help_module );
314         module_EndBank( p_vlc );
315         if( i_object ) vlc_object_release( p_vlc );
316         return VLC_EGENERIC;
317     }
318
319     /* Check for short help option */
320     if( config_GetInt( p_vlc, "help" ) )
321     {
322         Help( p_vlc, "help" );
323         b_exit = VLC_TRUE;
324     }
325     /* Check for version option */
326     else if( config_GetInt( p_vlc, "version" ) )
327     {
328         Version();
329         b_exit = VLC_TRUE;
330     }
331
332     /* Set the config file stuff */
333     p_vlc->psz_homedir = config_GetHomeDir();
334     p_vlc->psz_configfile = config_GetPsz( p_vlc, "config" );
335
336     /* Check for plugins cache options */
337     if( config_GetInt( p_vlc, "reset-plugins-cache" ) )
338     {
339         libvlc.p_module_bank->b_cache_delete = VLC_TRUE;
340     }
341
342     /* Hack: remove the help module here */
343     vlc_object_detach( p_help_module );
344     /* End hack */
345
346     /* Will be re-done properly later on */
347     p_vlc->p_libvlc->i_verbose = config_GetInt( p_vlc, "verbose" );
348
349     /* Check for daemon mode */
350 #ifndef WIN32
351     if( config_GetInt( p_vlc, "daemon" ) )
352     {
353 #if HAVE_DAEMON
354         if( daemon( 0, 0) != 0 )
355         {
356             msg_Err( p_vlc, "Unable to fork vlc to daemon mode" );
357             b_exit = VLC_TRUE;
358         }
359
360         p_vlc->p_libvlc->b_daemon = VLC_TRUE;
361
362 #else
363         pid_t i_pid;
364
365         if( ( i_pid = fork() ) < 0 )
366         {
367             msg_Err( p_vlc, "Unable to fork vlc to daemon mode" );
368             b_exit = VLC_TRUE;
369         }
370         else if( i_pid )
371         {
372             /* This is the parent, exit right now */
373             msg_Dbg( p_vlc, "closing parent process" );
374             b_exit = VLC_TRUE;
375         }
376         else
377         {
378             /* We are the child */
379             msg_Dbg( p_vlc, "daemon spawned" );
380             close( STDIN_FILENO );
381             close( STDOUT_FILENO );
382             close( STDERR_FILENO );
383
384             p_vlc->p_libvlc->b_daemon = VLC_TRUE;
385         }
386 #endif
387     }
388 #endif
389
390     if( b_exit )
391     {
392         config_Free( p_help_module );
393         vlc_object_destroy( p_help_module );
394         module_EndBank( p_vlc );
395         if( i_object ) vlc_object_release( p_vlc );
396         return VLC_EEXIT;
397     }
398
399     /* Check for translation config option */
400 #if defined( ENABLE_NLS ) \
401      && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
402
403     /* This ain't really nice to have to reload the config here but it seems
404      * the only way to do it. */
405     config_LoadConfigFile( p_vlc, "main" );
406     config_LoadCmdLine( p_vlc, &i_argc, ppsz_argv, VLC_TRUE );
407
408     /* Check if the user specified a custom language */
409     psz_language = config_GetPsz( p_vlc, "language" );
410     if( psz_language && *psz_language && strcmp( psz_language, "auto" ) )
411     {
412         vlc_bool_t b_cache_delete = libvlc.p_module_bank->b_cache_delete;
413
414         /* Reset the default domain */
415         SetLanguage( psz_language );
416
417         /* Translate "C" to the language code: "fr", "en_GB", "nl", "ru"... */
418         msg_Dbg( p_vlc, "translation test: code is \"%s\"", _("C") );
419
420         textdomain( PACKAGE_NAME );
421
422 #if defined( ENABLE_UTF8 )
423         bind_textdomain_codeset( PACKAGE_NAME, "UTF-8" );
424 #endif
425
426         module_EndBank( p_vlc );
427         module_InitBank( p_vlc );
428         config_LoadConfigFile( p_vlc, "main" );
429         config_LoadCmdLine( p_vlc, &i_argc, ppsz_argv, VLC_TRUE );
430         libvlc.p_module_bank->b_cache_delete = b_cache_delete;
431     }
432     if( psz_language ) free( psz_language );
433 #endif
434
435     /*
436      * Load the builtins and plugins into the module_bank.
437      * We have to do it before config_Load*() because this also gets the
438      * list of configuration options exported by each module and loads their
439      * default values.
440      */
441     module_LoadBuiltins( p_vlc );
442     module_LoadPlugins( p_vlc );
443     if( p_vlc->b_die )
444     {
445         b_exit = VLC_TRUE;
446     }
447
448     msg_Dbg( p_vlc, "module bank initialized, found %i modules",
449                     libvlc.p_module_bank->i_children );
450
451     /* Hack: insert the help module here */
452     vlc_object_attach( p_help_module, libvlc.p_module_bank );
453     /* End hack */
454
455     /* Check for help on modules */
456     if( (p_tmp = config_GetPsz( p_vlc, "module" )) )
457     {
458         Help( p_vlc, p_tmp );
459         free( p_tmp );
460         b_exit = VLC_TRUE;
461     }
462     /* Check for long help option */
463     else if( config_GetInt( p_vlc, "longhelp" ) )
464     {
465         Help( p_vlc, "longhelp" );
466         b_exit = VLC_TRUE;
467     }
468     /* Check for module list option */
469     else if( config_GetInt( p_vlc, "list" ) )
470     {
471         ListModules( p_vlc );
472         b_exit = VLC_TRUE;
473     }
474
475     /* Check for config file options */
476     if( config_GetInt( p_vlc, "reset-config" ) )
477     {
478         vlc_object_detach( p_help_module );
479         config_ResetAll( p_vlc );
480         config_LoadCmdLine( p_vlc, &i_argc, ppsz_argv, VLC_TRUE );
481         config_SaveConfigFile( p_vlc, NULL );
482         vlc_object_attach( p_help_module, libvlc.p_module_bank );
483     }
484     if( config_GetInt( p_vlc, "save-config" ) )
485     {
486         vlc_object_detach( p_help_module );
487         config_LoadConfigFile( p_vlc, NULL );
488         config_LoadCmdLine( p_vlc, &i_argc, ppsz_argv, VLC_TRUE );
489         config_SaveConfigFile( p_vlc, NULL );
490         vlc_object_attach( p_help_module, libvlc.p_module_bank );
491     }
492
493     /* Hack: remove the help module here */
494     vlc_object_detach( p_help_module );
495     /* End hack */
496
497     if( b_exit )
498     {
499         config_Free( p_help_module );
500         vlc_object_destroy( p_help_module );
501         module_EndBank( p_vlc );
502         if( i_object ) vlc_object_release( p_vlc );
503         return VLC_EEXIT;
504     }
505
506     /*
507      * Init device values
508      */
509     InitDeviceValues( p_vlc );
510
511     /*
512      * Override default configuration with config file settings
513      */
514     config_LoadConfigFile( p_vlc, NULL );
515
516     /* Hack: insert the help module here */
517     vlc_object_attach( p_help_module, libvlc.p_module_bank );
518     /* End hack */
519
520     /*
521      * Override configuration with command line settings
522      */
523     if( config_LoadCmdLine( p_vlc, &i_argc, ppsz_argv, VLC_FALSE ) )
524     {
525 #ifdef WIN32
526         ShowConsole();
527         /* Pause the console because it's destroyed when we exit */
528         fprintf( stderr, "The command line options couldn't be loaded, check "
529                  "that they are valid.\n" );
530         PauseConsole();
531 #endif
532         vlc_object_detach( p_help_module );
533         config_Free( p_help_module );
534         vlc_object_destroy( p_help_module );
535         module_EndBank( p_vlc );
536         if( i_object ) vlc_object_release( p_vlc );
537         return VLC_EGENERIC;
538     }
539
540     /* Hack: remove the help module here */
541     vlc_object_detach( p_help_module );
542     config_Free( p_help_module );
543     vlc_object_destroy( p_help_module );
544     /* End hack */
545
546     /*
547      * System specific configuration
548      */
549     system_Configure( p_vlc, &i_argc, ppsz_argv );
550
551     /*
552      * Message queue options
553      */
554
555     var_Create( p_vlc, "verbose", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
556     if( config_GetInt( p_vlc, "quiet" ) )
557     {
558         vlc_value_t val;
559         val.i_int = -1;
560         var_Set( p_vlc, "verbose", val );
561     }
562     var_AddCallback( p_vlc, "verbose", VerboseCallback, NULL );
563     var_Change( p_vlc, "verbose", VLC_VAR_TRIGGER_CALLBACKS, NULL, NULL );
564
565     libvlc.b_color = libvlc.b_color && config_GetInt( p_vlc, "color" );
566
567     /*
568      * Output messages that may still be in the queue
569      */
570     msg_Flush( p_vlc );
571
572     /* p_vlc initialization. FIXME ? */
573
574     if( !config_GetInt( p_vlc, "fpu" ) )
575         libvlc.i_cpu &= ~CPU_CAPABILITY_FPU;
576
577 #if defined( __i386__ ) || defined( __x86_64__ )
578     if( !config_GetInt( p_vlc, "mmx" ) )
579         libvlc.i_cpu &= ~CPU_CAPABILITY_MMX;
580     if( !config_GetInt( p_vlc, "3dn" ) )
581         libvlc.i_cpu &= ~CPU_CAPABILITY_3DNOW;
582     if( !config_GetInt( p_vlc, "mmxext" ) )
583         libvlc.i_cpu &= ~CPU_CAPABILITY_MMXEXT;
584     if( !config_GetInt( p_vlc, "sse" ) )
585         libvlc.i_cpu &= ~CPU_CAPABILITY_SSE;
586     if( !config_GetInt( p_vlc, "sse2" ) )
587         libvlc.i_cpu &= ~CPU_CAPABILITY_SSE2;
588 #endif
589 #if defined( __powerpc__ ) || defined( SYS_DARWIN )
590     if( !config_GetInt( p_vlc, "altivec" ) )
591         libvlc.i_cpu &= ~CPU_CAPABILITY_ALTIVEC;
592 #endif
593
594 #define PRINT_CAPABILITY( capability, string )                              \
595     if( libvlc.i_cpu & capability )                                         \
596     {                                                                       \
597         strncat( p_capabilities, string " ",                                \
598                  sizeof(p_capabilities) - strlen(p_capabilities) );         \
599         p_capabilities[sizeof(p_capabilities) - 1] = '\0';                  \
600     }
601
602     p_capabilities[0] = '\0';
603     PRINT_CAPABILITY( CPU_CAPABILITY_486, "486" );
604     PRINT_CAPABILITY( CPU_CAPABILITY_586, "586" );
605     PRINT_CAPABILITY( CPU_CAPABILITY_PPRO, "Pentium Pro" );
606     PRINT_CAPABILITY( CPU_CAPABILITY_MMX, "MMX" );
607     PRINT_CAPABILITY( CPU_CAPABILITY_3DNOW, "3DNow!" );
608     PRINT_CAPABILITY( CPU_CAPABILITY_MMXEXT, "MMXEXT" );
609     PRINT_CAPABILITY( CPU_CAPABILITY_SSE, "SSE" );
610     PRINT_CAPABILITY( CPU_CAPABILITY_SSE2, "SSE2" );
611     PRINT_CAPABILITY( CPU_CAPABILITY_ALTIVEC, "AltiVec" );
612     PRINT_CAPABILITY( CPU_CAPABILITY_FPU, "FPU" );
613     msg_Dbg( p_vlc, "CPU has capabilities %s", p_capabilities );
614
615     /*
616      * Choose the best memcpy module
617      */
618     p_vlc->p_memcpy_module = module_Need( p_vlc, "memcpy", "$memcpy", 0 );
619
620     if( p_vlc->pf_memcpy == NULL )
621     {
622         p_vlc->pf_memcpy = memcpy;
623     }
624
625     if( p_vlc->pf_memset == NULL )
626     {
627         p_vlc->pf_memset = memset;
628     }
629
630     /*
631      * Initialize hotkey handling
632      */
633     var_Create( p_vlc, "key-pressed", VLC_VAR_INTEGER );
634     p_vlc->p_hotkeys = malloc( sizeof(p_hotkeys) );
635     /* Do a copy (we don't need to modify the strings) */
636     memcpy( p_vlc->p_hotkeys, p_hotkeys, sizeof(p_hotkeys) );
637
638     /*
639      * Initialize playlist and get commandline files
640      */
641     p_playlist = playlist_Create( p_vlc );
642     if( !p_playlist )
643     {
644         msg_Err( p_vlc, "playlist initialization failed" );
645         if( p_vlc->p_memcpy_module != NULL )
646         {
647             module_Unneed( p_vlc, p_vlc->p_memcpy_module );
648         }
649         module_EndBank( p_vlc );
650         if( i_object ) vlc_object_release( p_vlc );
651         return VLC_EGENERIC;
652     }
653
654     psz_modules = config_GetPsz( p_playlist, "services-discovery" );
655     if( psz_modules && *psz_modules )
656     {
657         /* Add service discovery modules */
658         playlist_AddSDModules( p_playlist, psz_modules );
659     }
660     if( psz_modules ) free( psz_modules );
661
662     /*
663      * Load background interfaces
664      */
665     psz_modules = config_GetPsz( p_vlc, "extraintf" );
666     psz_control = config_GetPsz( p_vlc, "control" );
667
668     if( psz_modules && *psz_modules && psz_control && *psz_control )
669     {
670         psz_modules = (char *)realloc( psz_modules, strlen( psz_modules ) +
671                                                     strlen( psz_control ) + 1 );
672         sprintf( psz_modules, "%s:%s", psz_modules, psz_control );
673     }
674     else if( psz_control && *psz_control )
675     {
676         if( psz_modules ) free( psz_modules );
677         psz_modules = strdup( psz_control );
678     }
679
680     psz_parser = psz_modules;
681     if( psz_parser && *psz_parser &&
682        strstr( psz_parser, ",") && !strstr(psz_parser, ":" ) )
683     {
684         msg_Info( p_vlc, "Warning: you are using a deprecated syntax for "
685                          "extraintf / control." );
686         msg_Info( p_vlc, "You must now use ':' as separator instead of ','." );
687     }
688     while ( psz_parser && *psz_parser )
689     {
690         char *psz_module, *psz_temp;
691         psz_module = psz_parser;
692         psz_parser = strchr( psz_module, ':' );
693         if( !psz_parser ) psz_parser = strchr( psz_module, ',' );
694         if ( psz_parser )
695         {
696             *psz_parser = '\0';
697             psz_parser++;
698         }
699         psz_temp = (char *)malloc( strlen(psz_module) + sizeof(",none") );
700         if( psz_temp )
701         {
702             sprintf( psz_temp, "%s,none", psz_module );
703             VLC_AddIntf( 0, psz_temp, VLC_FALSE, VLC_FALSE );
704             free( psz_temp );
705         }
706     }
707     if ( psz_modules )
708     {
709         free( psz_modules );
710     }
711
712     /*
713      * Allways load the hotkeys interface if it exists
714      */
715     VLC_AddIntf( 0, "hotkeys,none", VLC_FALSE, VLC_FALSE );
716
717     /*
718      * FIXME: kludge to use a p_vlc-local variable for the Mozilla plugin
719      */
720     var_Create( p_vlc, "drawable", VLC_VAR_INTEGER );
721     var_Create( p_vlc, "drawableredraw", VLC_VAR_INTEGER );
722     var_Create( p_vlc, "drawablet", VLC_VAR_INTEGER );
723     var_Create( p_vlc, "drawablel", VLC_VAR_INTEGER );
724     var_Create( p_vlc, "drawableb", VLC_VAR_INTEGER );
725     var_Create( p_vlc, "drawabler", VLC_VAR_INTEGER );
726     var_Create( p_vlc, "drawablex", VLC_VAR_INTEGER );
727     var_Create( p_vlc, "drawabley", VLC_VAR_INTEGER );
728     var_Create( p_vlc, "drawablew", VLC_VAR_INTEGER );
729     var_Create( p_vlc, "drawableh", VLC_VAR_INTEGER );
730     var_Create( p_vlc, "drawableportx", VLC_VAR_INTEGER );
731     var_Create( p_vlc, "drawableporty", VLC_VAR_INTEGER );
732
733     /*
734      * Get input filenames given as commandline arguments
735      */
736     GetFilenames( p_vlc, i_argc, ppsz_argv );
737
738     if( i_object ) vlc_object_release( p_vlc );
739     return VLC_SUCCESS;
740 }
741
742 /*****************************************************************************
743  * VLC_AddIntf: add an interface
744  *****************************************************************************
745  * This function opens an interface plugin and runs it. If b_block is set
746  * to 0, VLC_AddIntf will return immediately and let the interface run in a
747  * separate thread. If b_block is set to 1, VLC_AddIntf will continue until
748  * user requests to quit. If b_play is set to 1, VLC_AddIntf will start playing
749  * the playlist when it is completely initialised.
750  *****************************************************************************/
751 int VLC_AddIntf( int i_object, char const *psz_module,
752                  vlc_bool_t b_block, vlc_bool_t b_play )
753 {
754     int i_err;
755     intf_thread_t *p_intf;
756     vlc_t *p_vlc = vlc_current_object( i_object );
757
758     if( !p_vlc )
759     {
760         return VLC_ENOOBJ;
761     }
762
763 #ifndef WIN32
764     if( p_vlc->p_libvlc->b_daemon && b_block && !psz_module )
765     {
766         /* Daemon mode hack.
767          * We prefer the dummy interface if none is specified. */
768         char *psz_interface = config_GetPsz( p_vlc, "intf" );
769         if( !psz_interface || !*psz_interface ) psz_module = "dummy";
770         if( psz_interface ) free( psz_interface );
771     }
772 #endif
773
774     /* Try to create the interface */
775     p_intf = intf_Create( p_vlc, psz_module ? psz_module : "$intf" );
776
777     if( p_intf == NULL )
778     {
779         msg_Err( p_vlc, "interface \"%s\" initialization failed", psz_module );
780         if( i_object ) vlc_object_release( p_vlc );
781         return VLC_EGENERIC;
782     }
783
784     /* Interface doesn't handle play on start so do it ourselves */
785     if( !p_intf->b_play && b_play ) VLC_Play( i_object );
786
787     /* Try to run the interface */
788     p_intf->b_play = b_play;
789     p_intf->b_block = b_block;
790     i_err = intf_RunThread( p_intf );
791     if( i_err )
792     {
793         vlc_object_detach( p_intf );
794         intf_Destroy( p_intf );
795         if( i_object ) vlc_object_release( p_vlc );
796         return i_err;
797     }
798
799     if( i_object ) vlc_object_release( p_vlc );
800     return VLC_SUCCESS;
801 }
802
803 /*****************************************************************************
804  * VLC_Die: ask vlc to die.
805  *****************************************************************************
806  * This function sets p_vlc->b_die to VLC_TRUE, but does not do any other
807  * task. It is your duty to call VLC_CleanUp and VLC_Destroy afterwards.
808  *****************************************************************************/
809 int VLC_Die( int i_object )
810 {
811     vlc_t *p_vlc = vlc_current_object( i_object );
812
813     if( !p_vlc )
814     {
815         return VLC_ENOOBJ;
816     }
817
818     p_vlc->b_die = VLC_TRUE;
819
820     if( i_object ) vlc_object_release( p_vlc );
821     return VLC_SUCCESS;
822 }
823
824 /*****************************************************************************
825  * VLC_CleanUp: CleanUp all the intf, playlist, vout, aout
826  *****************************************************************************/
827 int VLC_CleanUp( int i_object )
828 {
829     intf_thread_t      * p_intf;
830     playlist_t         * p_playlist;
831     vout_thread_t      * p_vout;
832     aout_instance_t    * p_aout;
833     announce_handler_t * p_announce;
834     vlc_t *p_vlc = vlc_current_object( i_object );
835
836     /* Check that the handle is valid */
837     if( !p_vlc )
838     {
839         return VLC_ENOOBJ;
840     }
841
842     /*
843      * Ask the interfaces to stop and destroy them
844      */
845     msg_Dbg( p_vlc, "removing all interfaces" );
846     while( (p_intf = vlc_object_find( p_vlc, VLC_OBJECT_INTF, FIND_CHILD )) )
847     {
848         intf_StopThread( p_intf );
849         vlc_object_detach( p_intf );
850         vlc_object_release( p_intf );
851         intf_Destroy( p_intf );
852     }
853
854     /*
855      * Free playlists
856      */
857     msg_Dbg( p_vlc, "removing all playlists" );
858     while( (p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST,
859                                           FIND_CHILD )) )
860     {
861         vlc_object_detach( p_playlist );
862         vlc_object_release( p_playlist );
863         playlist_Destroy( p_playlist );
864     }
865
866     /*
867      * Free video outputs
868      */
869     msg_Dbg( p_vlc, "removing all video outputs" );
870     while( (p_vout = vlc_object_find( p_vlc, VLC_OBJECT_VOUT, FIND_CHILD )) )
871     {
872         vlc_object_detach( p_vout );
873         vlc_object_release( p_vout );
874         vout_Destroy( p_vout );
875     }
876
877     /*
878      * Free audio outputs
879      */
880     msg_Dbg( p_vlc, "removing all audio outputs" );
881     while( (p_aout = vlc_object_find( p_vlc, VLC_OBJECT_AOUT, FIND_CHILD )) )
882     {
883         vlc_object_detach( (vlc_object_t *)p_aout );
884         vlc_object_release( (vlc_object_t *)p_aout );
885         aout_Delete( p_aout );
886     }
887
888     /*
889      * Free announce handler(s?)
890      */
891     msg_Dbg( p_vlc, "removing announce handler" );
892     while( (p_announce = vlc_object_find( p_vlc, VLC_OBJECT_ANNOUNCE,
893                                                  FIND_CHILD ) ) )
894    {
895         vlc_object_detach( p_announce );
896         vlc_object_release( p_announce );
897         announce_HandlerDestroy( p_announce );
898    }
899
900     if( i_object ) vlc_object_release( p_vlc );
901     return VLC_SUCCESS;
902 }
903
904 /*****************************************************************************
905  * VLC_Destroy: Destroy everything.
906  *****************************************************************************
907  * This function requests the running threads to finish, waits for their
908  * termination, and destroys their structure.
909  *****************************************************************************/
910 int VLC_Destroy( int i_object )
911 {
912     vlc_t *p_vlc = vlc_current_object( i_object );
913
914     if( !p_vlc )
915     {
916         return VLC_ENOOBJ;
917     }
918
919     /*
920      * Free allocated memory
921      */
922     if( p_vlc->p_memcpy_module )
923     {
924         module_Unneed( p_vlc, p_vlc->p_memcpy_module );
925         p_vlc->p_memcpy_module = NULL;
926     }
927
928     /*
929      * Free module bank !
930      */
931     module_EndBank( p_vlc );
932
933     if( p_vlc->psz_homedir )
934     {
935         free( p_vlc->psz_homedir );
936         p_vlc->psz_homedir = NULL;
937     }
938
939     if( p_vlc->psz_configfile )
940     {
941         free( p_vlc->psz_configfile );
942         p_vlc->psz_configfile = NULL;
943     }
944
945     if( p_vlc->p_hotkeys )
946     {
947         free( p_vlc->p_hotkeys );
948         p_vlc->p_hotkeys = NULL;
949     }
950
951     /*
952      * System specific cleaning code
953      */
954     system_End( p_vlc );
955
956     /* Destroy mutexes */
957     vlc_mutex_destroy( &p_vlc->config_lock );
958
959     vlc_object_detach( p_vlc );
960
961     /* Release object before destroying it */
962     if( i_object ) vlc_object_release( p_vlc );
963
964     vlc_object_destroy( p_vlc );
965
966     /* Stop thread system: last one out please shut the door! */
967     vlc_threads_end( p_libvlc );
968
969     return VLC_SUCCESS;
970 }
971
972 /*****************************************************************************
973  * VLC_VariableSet: set a vlc variable
974  *****************************************************************************/
975 int VLC_VariableSet( int i_object, char const *psz_var, vlc_value_t value )
976 {
977     vlc_t *p_vlc = vlc_current_object( i_object );
978     int i_ret;
979
980     if( !p_vlc )
981     {
982         return VLC_ENOOBJ;
983     }
984
985     /* FIXME: Temporary hack for Mozilla, if variable starts with conf:: then
986      * we handle it as a configuration variable. Don't tell Gildas :) -- sam */
987     if( !strncmp( psz_var, "conf::", 6 ) )
988     {
989         module_config_t *p_item;
990         char const *psz_newvar = psz_var + 6;
991
992         p_item = config_FindConfig( VLC_OBJECT(p_vlc), psz_newvar );
993
994         if( p_item )
995         {
996             switch( p_item->i_type )
997             {
998                 case CONFIG_ITEM_BOOL:
999                     config_PutInt( p_vlc, psz_newvar, value.b_bool );
1000                     break;
1001                 case CONFIG_ITEM_INTEGER:
1002                     config_PutInt( p_vlc, psz_newvar, value.i_int );
1003                     break;
1004                 case CONFIG_ITEM_FLOAT:
1005                     config_PutFloat( p_vlc, psz_newvar, value.f_float );
1006                     break;
1007                 default:
1008                     config_PutPsz( p_vlc, psz_newvar, value.psz_string );
1009                     break;
1010             }
1011             if( i_object ) vlc_object_release( p_vlc );
1012             return VLC_SUCCESS;
1013         }
1014     }
1015
1016     i_ret = var_Set( p_vlc, psz_var, value );
1017
1018     if( i_object ) vlc_object_release( p_vlc );
1019     return i_ret;
1020 }
1021
1022 /*****************************************************************************
1023  * VLC_VariableGet: get a vlc variable
1024  *****************************************************************************/
1025 int VLC_VariableGet( int i_object, char const *psz_var, vlc_value_t *p_value )
1026 {
1027     vlc_t *p_vlc = vlc_current_object( i_object );
1028     int i_ret;
1029
1030     if( !p_vlc )
1031     {
1032         return VLC_ENOOBJ;
1033     }
1034
1035     i_ret = var_Get( p_vlc , psz_var, p_value );
1036
1037     if( i_object ) vlc_object_release( p_vlc );
1038     return i_ret;
1039 }
1040
1041 /*****************************************************************************
1042  * VLC_VariableType: get a vlc variable type
1043  *****************************************************************************/
1044 int VLC_VariableType( int i_object, char const *psz_var, int *pi_type )
1045 {
1046     int i_type;
1047     vlc_t *p_vlc = vlc_current_object( i_object );
1048
1049     if( !p_vlc )
1050     {
1051         return VLC_ENOOBJ;
1052     }
1053
1054     /* FIXME: Temporary hack for Mozilla, if variable starts with conf:: then
1055      * we handle it as a configuration variable. Don't tell Gildas :) -- sam */
1056     if( !strncmp( psz_var, "conf::", 6 ) )
1057     {
1058         module_config_t *p_item;
1059         char const *psz_newvar = psz_var + 6;
1060
1061         p_item = config_FindConfig( VLC_OBJECT(p_vlc), psz_newvar );
1062
1063         if( p_item )
1064         {
1065             switch( p_item->i_type )
1066             {
1067                 case CONFIG_ITEM_BOOL:
1068                     i_type = VLC_VAR_BOOL;
1069                     break;
1070                 case CONFIG_ITEM_INTEGER:
1071                     i_type = VLC_VAR_INTEGER;
1072                     break;
1073                 case CONFIG_ITEM_FLOAT:
1074                     i_type = VLC_VAR_FLOAT;
1075                     break;
1076                 default:
1077                     i_type = VLC_VAR_STRING;
1078                     break;
1079             }
1080         }
1081         else
1082             i_type = 0;
1083     }
1084     else
1085         i_type = VLC_VAR_TYPE & var_Type( p_vlc , psz_var );
1086
1087     if( i_object ) vlc_object_release( p_vlc );
1088
1089     if( i_type > 0 )
1090     {
1091         *pi_type = i_type;
1092         return VLC_SUCCESS;
1093     }
1094     return VLC_ENOVAR;
1095 }
1096
1097 /*****************************************************************************
1098  * VLC_AddTarget: adds a target for playing.
1099  *****************************************************************************
1100  * This function adds psz_target to the current playlist. If a playlist does
1101  * not exist, it will create one.
1102  *****************************************************************************/
1103 int VLC_AddTarget( int i_object, char const *psz_target,
1104                    char const **ppsz_options, int i_options,
1105                    int i_mode, int i_pos )
1106 {
1107     int i_err;
1108     playlist_t *p_playlist;
1109     vlc_t *p_vlc = vlc_current_object( i_object );
1110
1111     if( !p_vlc )
1112     {
1113         return VLC_ENOOBJ;
1114     }
1115
1116     p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, FIND_ANYWHERE );
1117
1118     if( p_playlist == NULL )
1119     {
1120         msg_Dbg( p_vlc, "no playlist present, creating one" );
1121         p_playlist = playlist_Create( p_vlc );
1122
1123         if( p_playlist == NULL )
1124         {
1125             if( i_object ) vlc_object_release( p_vlc );
1126             return VLC_EGENERIC;
1127         }
1128
1129         vlc_object_yield( p_playlist );
1130     }
1131
1132     i_err = playlist_AddExt( p_playlist, psz_target, psz_target,
1133                              i_mode, i_pos, -1, ppsz_options, i_options);
1134
1135     vlc_object_release( p_playlist );
1136
1137     if( i_object ) vlc_object_release( p_vlc );
1138     return i_err;
1139 }
1140
1141 /*****************************************************************************
1142  * VLC_Play: play
1143  *****************************************************************************/
1144 int VLC_Play( int i_object )
1145 {
1146     playlist_t * p_playlist;
1147     vlc_t *p_vlc = vlc_current_object( i_object );
1148
1149     /* Check that the handle is valid */
1150     if( !p_vlc )
1151     {
1152         return VLC_ENOOBJ;
1153     }
1154
1155     p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, FIND_CHILD );
1156
1157     if( !p_playlist )
1158     {
1159         if( i_object ) vlc_object_release( p_vlc );
1160         return VLC_ENOOBJ;
1161     }
1162
1163     playlist_Play( p_playlist );
1164     vlc_object_release( p_playlist );
1165
1166     if( i_object ) vlc_object_release( p_vlc );
1167     return VLC_SUCCESS;
1168 }
1169
1170 /*****************************************************************************
1171  * VLC_Pause: toggle pause
1172  *****************************************************************************/
1173 int VLC_Pause( int i_object )
1174 {
1175     playlist_t * p_playlist;
1176     vlc_t *p_vlc = vlc_current_object( i_object );
1177
1178     /* Check that the handle is valid */
1179     if( !p_vlc )
1180     {
1181         return VLC_ENOOBJ;
1182     }
1183
1184     p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, FIND_CHILD );
1185
1186     if( !p_playlist )
1187     {
1188         if( i_object ) vlc_object_release( p_vlc );
1189         return VLC_ENOOBJ;
1190     }
1191
1192     playlist_Pause( p_playlist );
1193     vlc_object_release( p_playlist );
1194
1195     if( i_object ) vlc_object_release( p_vlc );
1196     return VLC_SUCCESS;
1197 }
1198
1199 /*****************************************************************************
1200  * VLC_Pause: toggle pause
1201  *****************************************************************************/
1202 int VLC_Stop( int i_object )
1203 {
1204     playlist_t * p_playlist;
1205     vlc_t *p_vlc = vlc_current_object( i_object );
1206
1207     /* Check that the handle is valid */
1208     if( !p_vlc )
1209     {
1210         return VLC_ENOOBJ;
1211     }
1212
1213     p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, FIND_CHILD );
1214
1215     if( !p_playlist )
1216     {
1217         if( i_object ) vlc_object_release( p_vlc );
1218         return VLC_ENOOBJ;
1219     }
1220
1221     playlist_Stop( p_playlist );
1222     vlc_object_release( p_playlist );
1223
1224     if( i_object ) vlc_object_release( p_vlc );
1225     return VLC_SUCCESS;
1226 }
1227
1228 /*****************************************************************************
1229  * VLC_IsPlaying: Query for Playlist Status
1230  *****************************************************************************/
1231 vlc_bool_t VLC_IsPlaying( int i_object )
1232 {
1233     playlist_t * p_playlist;
1234     vlc_bool_t   b_playing;
1235
1236     vlc_t *p_vlc = vlc_current_object( i_object );
1237
1238     /* Check that the handle is valid */
1239     if( !p_vlc )
1240     {
1241         return VLC_ENOOBJ;
1242     }
1243
1244     p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, FIND_CHILD );
1245
1246     if( !p_playlist )
1247     {
1248         if( i_object ) vlc_object_release( p_vlc );
1249         return VLC_ENOOBJ;
1250     }
1251
1252     b_playing = playlist_IsPlaying( p_playlist );
1253     vlc_object_release( p_playlist );
1254
1255     if( i_object ) vlc_object_release( p_vlc );
1256     return b_playing;
1257 }
1258
1259 /**
1260  * Get the current position in a input
1261  *
1262  * Return the current position as a float
1263  * \note For some inputs, this will be unknown.
1264  *
1265  * \param i_object a vlc object id
1266  * \return a float in the range of 0.0 - 1.0
1267  */
1268 float VLC_PositionGet( int i_object )
1269 {
1270     input_thread_t *p_input;
1271     vlc_value_t val;
1272     vlc_t *p_vlc = vlc_current_object( i_object );
1273
1274     /* Check that the handle is valid */
1275     if( !p_vlc )
1276     {
1277         return VLC_ENOOBJ;
1278     }
1279
1280     p_input = vlc_object_find( p_vlc, VLC_OBJECT_INPUT, FIND_CHILD );
1281
1282     if( !p_input )
1283     {
1284         if( i_object ) vlc_object_release( p_vlc );
1285         return VLC_ENOOBJ;
1286     }
1287
1288     var_Get( p_input, "position", &val );
1289     vlc_object_release( p_input );
1290
1291     if( i_object ) vlc_object_release( p_vlc );
1292     return val.f_float;
1293 }
1294
1295 /**
1296  * Set the current position in a input
1297  *
1298  * Set the current position in a input and then return
1299  * the current position as a float.
1300  * \note For some inputs, this will be unknown.
1301  *
1302  * \param i_object a vlc object id
1303  * \param i_position a float in the range of 0.0 - 1.0
1304  * \return a float in the range of 0.0 - 1.0
1305  */
1306 float VLC_PositionSet( int i_object, float i_position )
1307 {
1308     input_thread_t *p_input;
1309     vlc_value_t val;
1310     vlc_t *p_vlc = vlc_current_object( i_object );
1311
1312     /* Check that the handle is valid */
1313     if( !p_vlc )
1314     {
1315         return VLC_ENOOBJ;
1316     }
1317
1318     p_input = vlc_object_find( p_vlc, VLC_OBJECT_INPUT, FIND_CHILD );
1319
1320     if( !p_input )
1321     {
1322         if( i_object ) vlc_object_release( p_vlc );
1323         return VLC_ENOOBJ;
1324     }
1325
1326     val.f_float = i_position;
1327     var_Set( p_input, "position", val );
1328     var_Get( p_input, "position", &val );
1329     vlc_object_release( p_input );
1330
1331     if( i_object ) vlc_object_release( p_vlc );
1332     return val.f_float;
1333 }
1334
1335 /**
1336  * Get the current position in a input
1337  *
1338  * Return the current position in seconds from the start.
1339  * \note For some inputs, this will be unknown.
1340  *
1341  * \param i_object a vlc object id
1342  * \return the offset from 0:00 in seconds
1343  */
1344 int VLC_TimeGet( int i_object )
1345 {
1346     input_thread_t *p_input;
1347     vlc_value_t val;
1348     vlc_t *p_vlc = vlc_current_object( i_object );
1349
1350     /* Check that the handle is valid */
1351     if( !p_vlc )
1352     {
1353         return VLC_ENOOBJ;
1354     }
1355
1356     p_input = vlc_object_find( p_vlc, VLC_OBJECT_INPUT, FIND_CHILD );
1357
1358     if( !p_input )
1359     {
1360         if( i_object ) vlc_object_release( p_vlc );
1361         return VLC_ENOOBJ;
1362     }
1363
1364     var_Get( p_input, "time", &val );
1365     vlc_object_release( p_input );
1366
1367     if( i_object ) vlc_object_release( p_vlc );
1368     return val.i_time  / 1000000;
1369 }
1370
1371 /**
1372  * Seek to a position in the current input
1373  *
1374  * Seek i_seconds in the current input. If b_relative is set,
1375  * then the seek will be relative to the current position, otherwise
1376  * it will seek to i_seconds from the beginning of the input.
1377  * \note For some inputs, this will be unknown.
1378  *
1379  * \param i_object a vlc object id
1380  * \param i_seconds seconds from current position or from beginning of input
1381  * \param b_relative seek relative from current position
1382  * \return VLC_SUCCESS on success
1383  */
1384 int VLC_TimeSet( int i_object, int i_seconds, vlc_bool_t b_relative )
1385 {
1386     input_thread_t *p_input;
1387     vlc_value_t val;
1388     vlc_t *p_vlc = vlc_current_object( i_object );
1389
1390     /* Check that the handle is valid */
1391     if( !p_vlc )
1392     {
1393         return VLC_ENOOBJ;
1394     }
1395
1396     p_input = vlc_object_find( p_vlc, VLC_OBJECT_INPUT, FIND_CHILD );
1397
1398     if( !p_input )
1399     {
1400         if( i_object ) vlc_object_release( p_vlc );
1401         return VLC_ENOOBJ;
1402     }
1403
1404     if( b_relative )
1405     {
1406         val.i_time = i_seconds;
1407         val.i_time = val.i_time * 1000000L;
1408         var_Set( p_input, "time-offset", val );
1409     }
1410     else
1411     {
1412         val.i_time = i_seconds;
1413         val.i_time = val.i_time * 1000000L;
1414         var_Set( p_input, "time", val );
1415     }
1416     vlc_object_release( p_input );
1417
1418     if( i_object ) vlc_object_release( p_vlc );
1419     return VLC_SUCCESS;
1420 }
1421
1422 /**
1423  * Get the total length of a input
1424  *
1425  * Return the total length in seconds from the current input.
1426  * \note For some inputs, this will be unknown.
1427  *
1428  * \param i_object a vlc object id
1429  * \return the length in seconds
1430  */
1431 int VLC_LengthGet( int i_object )
1432 {
1433     input_thread_t *p_input;
1434     vlc_value_t val;
1435     vlc_t *p_vlc = vlc_current_object( i_object );
1436
1437     /* Check that the handle is valid */
1438     if( !p_vlc )
1439     {
1440         return VLC_ENOOBJ;
1441     }
1442
1443     p_input = vlc_object_find( p_vlc, VLC_OBJECT_INPUT, FIND_CHILD );
1444
1445     if( !p_input )
1446     {
1447         if( i_object ) vlc_object_release( p_vlc );
1448         return VLC_ENOOBJ;
1449     }
1450
1451     var_Get( p_input, "length", &val );
1452     vlc_object_release( p_input );
1453
1454     if( i_object ) vlc_object_release( p_vlc );
1455     return val.i_time  / 1000000L;
1456 }
1457
1458 /**
1459  * Play the input faster than realtime
1460  *
1461  * 2x, 4x, 8x faster than realtime
1462  * \note For some inputs, this will be impossible.
1463  *
1464  * \param i_object a vlc object id
1465  * \return the current speedrate
1466  */
1467 float VLC_SpeedFaster( int i_object )
1468 {
1469     input_thread_t *p_input;
1470     vlc_value_t val;
1471     vlc_t *p_vlc = vlc_current_object( i_object );
1472
1473     /* Check that the handle is valid */
1474     if( !p_vlc )
1475     {
1476         return VLC_ENOOBJ;
1477     }
1478
1479     p_input = vlc_object_find( p_vlc, VLC_OBJECT_INPUT, FIND_CHILD );
1480
1481     if( !p_input )
1482     {
1483         if( i_object ) vlc_object_release( p_vlc );
1484         return VLC_ENOOBJ;
1485     }
1486
1487     val.b_bool = VLC_TRUE;
1488     var_Set( p_input, "rate-faster", val );
1489     var_Get( p_input, "rate", &val );
1490     vlc_object_release( p_input );
1491
1492     if( i_object ) vlc_object_release( p_vlc );
1493     return val.f_float / INPUT_RATE_DEFAULT;
1494 }
1495
1496 /**
1497  * Play the input slower than realtime
1498  *
1499  * 1/2x, 1/4x, 1/8x slower than realtime
1500  * \note For some inputs, this will be impossible.
1501  *
1502  * \param i_object a vlc object id
1503  * \return the current speedrate
1504  */
1505 float VLC_SpeedSlower( int i_object )
1506 {
1507     input_thread_t *p_input;
1508     vlc_value_t val;
1509     vlc_t *p_vlc = vlc_current_object( i_object );
1510
1511     /* Check that the handle is valid */
1512     if( !p_vlc )
1513     {
1514         return VLC_ENOOBJ;
1515     }
1516
1517     p_input = vlc_object_find( p_vlc, VLC_OBJECT_INPUT, FIND_CHILD );
1518
1519     if( !p_input )
1520     {
1521         if( i_object ) vlc_object_release( p_vlc );
1522         return VLC_ENOOBJ;
1523     }
1524
1525     val.b_bool = VLC_TRUE;
1526     var_Set( p_input, "rate-slower", val );
1527     var_Get( p_input, "rate", &val );
1528     vlc_object_release( p_input );
1529
1530     if( i_object ) vlc_object_release( p_vlc );
1531     return val.f_float / INPUT_RATE_DEFAULT;
1532 }
1533
1534 /**
1535  * Return the current playlist item
1536  *
1537  * Returns the index of the playlistitem that is currently selected for play.
1538  * This is valid even if nothing is currently playing.
1539  *
1540  * \param i_object a vlc object id
1541  * \return the current index
1542  */
1543 int VLC_PlaylistIndex( int i_object )
1544 {
1545     int i_index;
1546     playlist_t * p_playlist;
1547     vlc_t *p_vlc = vlc_current_object( i_object );
1548
1549     /* Check that the handle is valid */
1550     if( !p_vlc )
1551     {
1552         return VLC_ENOOBJ;
1553     }
1554
1555     p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, FIND_CHILD );
1556
1557     if( !p_playlist )
1558     {
1559         if( i_object ) vlc_object_release( p_vlc );
1560         return VLC_ENOOBJ;
1561     }
1562
1563     i_index = p_playlist->i_index;
1564     vlc_object_release( p_playlist );
1565
1566     if( i_object ) vlc_object_release( p_vlc );
1567     return i_index;
1568 }
1569
1570 /**
1571  * Total amount of items in the playlist
1572  *
1573  * \param i_object a vlc object id
1574  * \return amount of playlist items
1575  */
1576 int VLC_PlaylistNumberOfItems( int i_object )
1577 {
1578     int i_size;
1579     playlist_t * p_playlist;
1580     vlc_t *p_vlc = vlc_current_object( i_object );
1581
1582     /* Check that the handle is valid */
1583     if( !p_vlc )
1584     {
1585         return VLC_ENOOBJ;
1586     }
1587
1588     p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, FIND_CHILD );
1589
1590     if( !p_playlist )
1591     {
1592         if( i_object ) vlc_object_release( p_vlc );
1593         return VLC_ENOOBJ;
1594     }
1595
1596     i_size = p_playlist->i_size;
1597     vlc_object_release( p_playlist );
1598
1599     if( i_object ) vlc_object_release( p_vlc );
1600     return i_size;
1601 }
1602
1603 /**
1604  * Next playlist item
1605  *
1606  * Skip to the next playlistitem and play it.
1607  *
1608  * \param i_object a vlc object id
1609  * \return VLC_SUCCESS on success
1610  */
1611 int VLC_PlaylistNext( int i_object )
1612 {
1613     playlist_t * p_playlist;
1614     vlc_t *p_vlc = vlc_current_object( i_object );
1615
1616     /* Check that the handle is valid */
1617     if( !p_vlc )
1618     {
1619         return VLC_ENOOBJ;
1620     }
1621
1622     p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, FIND_CHILD );
1623
1624     if( !p_playlist )
1625     {
1626         if( i_object ) vlc_object_release( p_vlc );
1627         return VLC_ENOOBJ;
1628     }
1629
1630     playlist_Next( p_playlist );
1631     vlc_object_release( p_playlist );
1632
1633     if( i_object ) vlc_object_release( p_vlc );
1634     return VLC_SUCCESS;
1635 }
1636
1637 /**
1638  * Previous playlist item
1639  *
1640  * Skip to the previous playlistitem and play it.
1641  *
1642  * \param i_object a vlc object id
1643  * \return VLC_SUCCESS on success
1644  */
1645 int VLC_PlaylistPrev( int i_object )
1646 {
1647     playlist_t * p_playlist;
1648     vlc_t *p_vlc = vlc_current_object( i_object );
1649
1650     /* Check that the handle is valid */
1651     if( !p_vlc )
1652     {
1653         return VLC_ENOOBJ;
1654     }
1655
1656     p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, FIND_CHILD );
1657
1658     if( !p_playlist )
1659     {
1660         if( i_object ) vlc_object_release( p_vlc );
1661         return VLC_ENOOBJ;
1662     }
1663
1664     playlist_Prev( p_playlist );
1665     vlc_object_release( p_playlist );
1666
1667     if( i_object ) vlc_object_release( p_vlc );
1668     return VLC_SUCCESS;
1669 }
1670
1671
1672 /*****************************************************************************
1673  * VLC_PlaylistClear: Empty the playlist
1674  *****************************************************************************/
1675 int VLC_PlaylistClear( int i_object )
1676 {
1677     int i_err;
1678     playlist_t * p_playlist;
1679     vlc_t *p_vlc = vlc_current_object( i_object );
1680
1681     /* Check that the handle is valid */
1682     if( !p_vlc )
1683     {
1684         return VLC_ENOOBJ;
1685     }
1686
1687     p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, FIND_CHILD );
1688
1689     if( !p_playlist )
1690     {
1691         if( i_object ) vlc_object_release( p_vlc );
1692         return VLC_ENOOBJ;
1693     }
1694
1695     i_err = playlist_Clear( p_playlist );
1696
1697     vlc_object_release( p_playlist );
1698
1699     if( i_object ) vlc_object_release( p_vlc );
1700     return i_err;
1701 }
1702
1703 /**
1704  * Change the volume
1705  *
1706  * \param i_object a vlc object id
1707  * \param i_volume something in a range from 0-200
1708  * \return the new volume (range 0-200 %)
1709  */
1710 int VLC_VolumeSet( int i_object, int i_volume )
1711 {
1712     audio_volume_t i_vol = 0;
1713     vlc_t *p_vlc = vlc_current_object( i_object );
1714
1715     /* Check that the handle is valid */
1716     if( !p_vlc )
1717     {
1718         return VLC_ENOOBJ;
1719     }
1720
1721     if( i_volume >= 0 && i_volume <= 200 )
1722     {
1723         i_vol = i_volume * AOUT_VOLUME_MAX / 200;
1724         aout_VolumeSet( p_vlc, i_vol );
1725     }
1726
1727     if( i_object ) vlc_object_release( p_vlc );
1728     return i_vol * 200 / AOUT_VOLUME_MAX;
1729 }
1730
1731 /**
1732  * Get the current volume
1733  *
1734  * Retrieve the current volume.
1735  *
1736  * \param i_object a vlc object id
1737  * \return the current volume (range 0-200 %)
1738  */
1739 int VLC_VolumeGet( int i_object )
1740 {
1741     audio_volume_t i_volume;
1742     vlc_t *p_vlc = vlc_current_object( i_object );
1743
1744     /* Check that the handle is valid */
1745     if( !p_vlc )
1746     {
1747         return VLC_ENOOBJ;
1748     }
1749
1750     aout_VolumeGet( p_vlc, &i_volume );
1751
1752     if( i_object ) vlc_object_release( p_vlc );
1753     return i_volume*200/AOUT_VOLUME_MAX;
1754 }
1755
1756 /**
1757  * Mute/Unmute the volume
1758  *
1759  * \param i_object a vlc object id
1760  * \return VLC_SUCCESS on success
1761  */
1762 int VLC_VolumeMute( int i_object )
1763 {
1764     vlc_t *p_vlc = vlc_current_object( i_object );
1765
1766     /* Check that the handle is valid */
1767     if( !p_vlc )
1768     {
1769         return VLC_ENOOBJ;
1770     }
1771
1772     aout_VolumeMute( p_vlc, NULL );
1773
1774     if( i_object ) vlc_object_release( p_vlc );
1775     return VLC_SUCCESS;
1776 }
1777
1778 /*****************************************************************************
1779  * VLC_FullScreen: toggle fullscreen mode
1780  *****************************************************************************/
1781 int VLC_FullScreen( int i_object )
1782 {
1783     vout_thread_t *p_vout;
1784     vlc_t *p_vlc = vlc_current_object( i_object );
1785
1786     if( !p_vlc )
1787     {
1788         return VLC_ENOOBJ;
1789     }
1790
1791     p_vout = vlc_object_find( p_vlc, VLC_OBJECT_VOUT, FIND_CHILD );
1792
1793     if( !p_vout )
1794     {
1795         if( i_object ) vlc_object_release( p_vlc );
1796         return VLC_ENOOBJ;
1797     }
1798
1799     p_vout->i_changes |= VOUT_FULLSCREEN_CHANGE;
1800     vlc_object_release( p_vout );
1801
1802     if( i_object ) vlc_object_release( p_vlc );
1803     return VLC_SUCCESS;
1804 }
1805
1806 /* following functions are local */
1807
1808 /*****************************************************************************
1809  * SetLanguage: set the interface language.
1810  *****************************************************************************
1811  * We set the LC_MESSAGES locale category for interface messages and buttons,
1812  * as well as the LC_CTYPE category for string sorting and possible wide
1813  * character support.
1814  *****************************************************************************/
1815 static void SetLanguage ( char const *psz_lang )
1816 {
1817 #if defined( ENABLE_NLS ) \
1818      && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
1819
1820     char *          psz_path;
1821 #if defined( SYS_DARWIN ) || defined ( WIN32 ) || defined( SYS_BEOS )
1822     char            psz_tmp[1024];
1823 #endif
1824
1825     if( psz_lang && !*psz_lang )
1826     {
1827 #   if defined( HAVE_LC_MESSAGES )
1828         setlocale( LC_MESSAGES, psz_lang );
1829 #   endif
1830         setlocale( LC_CTYPE, psz_lang );
1831     }
1832     else if( psz_lang )
1833     {
1834 #ifdef SYS_DARWIN
1835         /* I need that under Darwin, please check it doesn't disturb
1836          * other platforms. --Meuuh */
1837         setenv( "LANG", psz_lang, 1 );
1838
1839 #elif defined( SYS_BEOS ) || defined( WIN32 )
1840         /* We set LC_ALL manually because it is the only way to set
1841          * the language at runtime under eg. Windows. Beware that this
1842          * makes the environment unconsistent when libvlc is unloaded and
1843          * should probably be moved to a safer place like vlc.c. */
1844         static char psz_lcall[20];
1845         snprintf( psz_lcall, 19, "LC_ALL=%s", psz_lang );
1846         psz_lcall[19] = '\0';
1847         putenv( psz_lcall );
1848 #endif
1849
1850         setlocale( LC_ALL, psz_lang );
1851     }
1852
1853     /* Specify where to find the locales for current domain */
1854 #if !defined( SYS_DARWIN ) && !defined( WIN32 ) && !defined( SYS_BEOS )
1855     psz_path = LOCALEDIR;
1856 #else
1857     snprintf( psz_tmp, sizeof(psz_tmp), "%s/%s", libvlc.psz_vlcpath,
1858               "locale" );
1859     psz_path = psz_tmp;
1860 #endif
1861     if( !bindtextdomain( PACKAGE_NAME, psz_path ) )
1862     {
1863         fprintf( stderr, "warning: no domain %s in directory %s\n",
1864                  PACKAGE_NAME, psz_path );
1865     }
1866
1867     /* Set the default domain */
1868     textdomain( PACKAGE_NAME );
1869
1870 #if defined( ENABLE_UTF8 )
1871     bind_textdomain_codeset( PACKAGE_NAME, "UTF-8" );
1872 #endif
1873
1874 #endif
1875 }
1876
1877 /*****************************************************************************
1878  * GetFilenames: parse command line options which are not flags
1879  *****************************************************************************
1880  * Parse command line for input files as well as their associated options.
1881  * An option always follows its associated input and begins with a ":".
1882  *****************************************************************************/
1883 static int GetFilenames( vlc_t *p_vlc, int i_argc, char *ppsz_argv[] )
1884 {
1885     int i_opt, i_options;
1886
1887     /* We assume that the remaining parameters are filenames
1888      * and their input options */
1889     for( i_opt = i_argc - 1; i_opt >= optind; i_opt-- )
1890     {
1891         i_options = 0;
1892
1893         /* Count the input options */
1894         while( *ppsz_argv[ i_opt ] == ':' && i_opt > optind )
1895         {
1896             i_options++;
1897             i_opt--;
1898         }
1899
1900         /* TODO: write an internal function of this one, to avoid
1901          *       unnecessary lookups. */
1902         VLC_AddTarget( p_vlc->i_object_id, ppsz_argv[ i_opt ],
1903                        (char const **)( i_options ? &ppsz_argv[i_opt + 1] :
1904                                         NULL ), i_options,
1905                        PLAYLIST_INSERT, 0 );
1906     }
1907
1908     return VLC_SUCCESS;
1909 }
1910
1911 /*****************************************************************************
1912  * Help: print program help
1913  *****************************************************************************
1914  * Print a short inline help. Message interface is initialized at this stage.
1915  *****************************************************************************/
1916 static void Help( vlc_t *p_this, char const *psz_help_name )
1917 {
1918 #ifdef WIN32
1919     ShowConsole();
1920 #endif
1921
1922     if( psz_help_name && !strcmp( psz_help_name, "help" ) )
1923     {
1924         fprintf( stdout, VLC_USAGE, p_this->psz_object_name );
1925         Usage( p_this, "help" );
1926         Usage( p_this, "main" );
1927     }
1928     else if( psz_help_name && !strcmp( psz_help_name, "longhelp" ) )
1929     {
1930         fprintf( stdout, VLC_USAGE, p_this->psz_object_name );
1931         Usage( p_this, NULL );
1932     }
1933     else if( psz_help_name )
1934     {
1935         Usage( p_this, psz_help_name );
1936     }
1937
1938 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1939     PauseConsole();
1940 #endif
1941 }
1942
1943 /*****************************************************************************
1944  * Usage: print module usage
1945  *****************************************************************************
1946  * Print a short inline help. Message interface is initialized at this stage.
1947  *****************************************************************************/
1948 static void Usage( vlc_t *p_this, char const *psz_module_name )
1949 {
1950 #define FORMAT_STRING "  %s --%s%s%s%s%s%s%s "
1951     /* short option ------'    |     | | | |  | |
1952      * option name ------------'     | | | |  | |
1953      * <bra -------------------------' | | |  | |
1954      * option type or "" --------------' | |  | |
1955      * ket> -----------------------------' |  | |
1956      * padding spaces ---------------------'  | |
1957      * comment -------------------------------' |
1958      * comment suffix --------------------------'
1959      *
1960      * The purpose of having bra and ket is that we might i18n them as well.
1961      */
1962 #define LINE_START 8
1963 #define PADDING_SPACES 25
1964     vlc_list_t *p_list;
1965     module_t *p_parser;
1966     module_config_t *p_item;
1967     char psz_spaces_text[PADDING_SPACES+LINE_START+1];
1968     char psz_spaces_longtext[LINE_START+3];
1969     char psz_format[sizeof(FORMAT_STRING)];
1970     char psz_buffer[10000];
1971     char psz_short[4];
1972     int i_index;
1973     int i_width = ConsoleWidth() - (PADDING_SPACES+LINE_START+1);
1974     vlc_bool_t b_advanced = config_GetInt( p_this, "advanced" );
1975     vlc_bool_t b_description;
1976
1977     memset( psz_spaces_text, ' ', PADDING_SPACES+LINE_START );
1978     psz_spaces_text[PADDING_SPACES+LINE_START] = '\0';
1979     memset( psz_spaces_longtext, ' ', LINE_START+2 );
1980     psz_spaces_longtext[LINE_START+2] = '\0';
1981
1982     strcpy( psz_format, FORMAT_STRING );
1983
1984     /* List all modules */
1985     p_list = vlc_list_find( p_this, VLC_OBJECT_MODULE, FIND_ANYWHERE );
1986
1987     /* Enumerate the config for each module */
1988     for( i_index = 0; i_index < p_list->i_count; i_index++ )
1989     {
1990         vlc_bool_t b_help_module;
1991
1992         p_parser = (module_t *)p_list->p_values[i_index].p_object ;
1993
1994         if( psz_module_name && strcmp( psz_module_name,
1995                                        p_parser->psz_object_name ) )
1996         {
1997             continue;
1998         }
1999
2000         /* Ignore modules without config options */
2001         if( !p_parser->i_config_items )
2002         {
2003             continue;
2004         }
2005
2006         /* Ignore modules with only advanced config options if requested */
2007         if( !b_advanced )
2008         {
2009             for( p_item = p_parser->p_config;
2010                  p_item->i_type != CONFIG_HINT_END;
2011                  p_item++ )
2012             {
2013                 if( (p_item->i_type & CONFIG_ITEM) &&
2014                     !p_item->b_advanced ) break;
2015             }
2016             if( p_item->i_type == CONFIG_HINT_END ) continue;
2017         }
2018
2019         /* Print name of module */
2020         if( strcmp( "main", p_parser->psz_object_name ) )
2021         fprintf( stdout, "\n %s\n", p_parser->psz_longname );
2022
2023         b_help_module = !strcmp( "help", p_parser->psz_object_name );
2024
2025         /* Print module options */
2026         for( p_item = p_parser->p_config;
2027              p_item->i_type != CONFIG_HINT_END;
2028              p_item++ )
2029         {
2030             char *psz_text, *psz_spaces = psz_spaces_text;
2031             char *psz_bra = NULL, *psz_type = NULL, *psz_ket = NULL;
2032             char *psz_suf = "", *psz_prefix = NULL;
2033             int i;
2034
2035             /* Skip advanced options if requested */
2036             if( p_item->b_advanced && !b_advanced )
2037             {
2038                 continue;
2039             }
2040
2041             switch( p_item->i_type )
2042             {
2043             case CONFIG_HINT_CATEGORY:
2044             case CONFIG_HINT_USAGE:
2045                 if( !strcmp( "main", p_parser->psz_object_name ) )
2046                 fprintf( stdout, "\n %s\n", p_item->psz_text );
2047                 break;
2048
2049             case CONFIG_ITEM_STRING:
2050             case CONFIG_ITEM_FILE:
2051             case CONFIG_ITEM_DIRECTORY:
2052             case CONFIG_ITEM_MODULE: /* We could also have "=<" here */
2053             case CONFIG_ITEM_MODULE_CAT:
2054             case CONFIG_ITEM_MODULE_LIST:
2055             case CONFIG_ITEM_MODULE_LIST_CAT:
2056                 psz_bra = " <"; psz_type = _("string"); psz_ket = ">";
2057
2058                 if( p_item->ppsz_list )
2059                 {
2060                     psz_bra = " {";
2061                     psz_type = psz_buffer;
2062                     psz_type[0] = '\0';
2063                     for( i = 0; p_item->ppsz_list[i]; i++ )
2064                     {
2065                         if( i ) strcat( psz_type, "," );
2066                         strcat( psz_type, p_item->ppsz_list[i] );
2067                     }
2068                     psz_ket = "}";
2069                 }
2070                 break;
2071             case CONFIG_ITEM_INTEGER:
2072             case CONFIG_ITEM_KEY: /* FIXME: do something a bit more clever */
2073                 psz_bra = " <"; psz_type = _("integer"); psz_ket = ">";
2074
2075                 if( p_item->i_list )
2076                 {
2077                     psz_bra = " {";
2078                     psz_type = psz_buffer;
2079                     psz_type[0] = '\0';
2080                     for( i = 0; p_item->ppsz_list_text[i]; i++ )
2081                     {
2082                         if( i ) strcat( psz_type, ", " );
2083                         sprintf( psz_type + strlen(psz_type), "%i (%s)",
2084                                  p_item->pi_list[i],
2085                                  p_item->ppsz_list_text[i] );
2086                     }
2087                     psz_ket = "}";
2088                 }
2089                 break;
2090             case CONFIG_ITEM_FLOAT:
2091                 psz_bra = " <"; psz_type = _("float"); psz_ket = ">";
2092                 break;
2093             case CONFIG_ITEM_BOOL:
2094                 psz_bra = ""; psz_type = ""; psz_ket = "";
2095                 if( !b_help_module )
2096                 {
2097                     psz_suf = p_item->i_value ? _(" (default enabled)") :
2098                                                 _(" (default disabled)");
2099                 }
2100                 break;
2101             }
2102
2103             if( !psz_type )
2104             {
2105                 continue;
2106             }
2107
2108             /* Add short option if any */
2109             if( p_item->i_short )
2110             {
2111                 sprintf( psz_short, "-%c,", p_item->i_short );
2112             }
2113             else
2114             {
2115                 strcpy( psz_short, "   " );
2116             }
2117
2118             i = PADDING_SPACES - strlen( p_item->psz_name )
2119                  - strlen( psz_bra ) - strlen( psz_type )
2120                  - strlen( psz_ket ) - 1;
2121
2122             if( p_item->i_type == CONFIG_ITEM_BOOL && !b_help_module )
2123             {
2124                 /* If option is of type --foo-bar, we print its counterpart
2125                  * as --no-foo-bar, but if it is of type --foobar (without
2126                  * dashes in the name) we print it as --nofoobar. Both
2127                  * values are of course valid, only the display changes. */
2128                 psz_prefix = strchr( p_item->psz_name, '-' ) ? ", --no-"
2129                                                              : ", --no";
2130                 i -= strlen( p_item->psz_name ) + strlen( psz_prefix );
2131             }
2132
2133             if( i < 0 )
2134             {
2135                 psz_spaces[0] = '\n';
2136                 i = 0;
2137             }
2138             else
2139             {
2140                 psz_spaces[i] = '\0';
2141             }
2142
2143             if( p_item->i_type == CONFIG_ITEM_BOOL && !b_help_module )
2144             {
2145                 fprintf( stdout, psz_format, psz_short, p_item->psz_name,
2146                          psz_prefix, p_item->psz_name, psz_bra, psz_type,
2147                          psz_ket, psz_spaces );
2148             }
2149             else
2150             {
2151                 fprintf( stdout, psz_format, psz_short, p_item->psz_name,
2152                          "", "", psz_bra, psz_type, psz_ket, psz_spaces );
2153             }
2154
2155             psz_spaces[i] = ' ';
2156
2157             /* We wrap the rest of the output */
2158             sprintf( psz_buffer, "%s%s", p_item->psz_text, psz_suf );
2159             b_description = config_GetInt( p_this, "help-verbose" );
2160
2161  description:
2162             psz_text = psz_buffer;
2163             while( *psz_text )
2164             {
2165                 char *psz_parser, *psz_word;
2166                 int i_end = strlen( psz_text );
2167
2168                 /* If the remaining text fits in a line, print it. */
2169                 if( i_end <= i_width )
2170                 {
2171                     fprintf( stdout, "%s\n", psz_text );
2172                     break;
2173                 }
2174
2175                 /* Otherwise, eat as many words as possible */
2176                 psz_parser = psz_text;
2177                 do
2178                 {
2179                     psz_word = psz_parser;
2180                     psz_parser = strchr( psz_word, ' ' );
2181                     /* If no space was found, we reached the end of the text
2182                      * block; otherwise, we skip the space we just found. */
2183                     psz_parser = psz_parser ? psz_parser + 1
2184                                             : psz_text + i_end;
2185
2186                 } while( psz_parser - psz_text <= i_width );
2187
2188                 /* We cut a word in one of these cases:
2189                  *  - it's the only word in the line and it's too long.
2190                  *  - we used less than 80% of the width and the word we are
2191                  *    going to wrap is longer than 40% of the width, and even
2192                  *    if the word would have fit in the next line. */
2193                 if( psz_word == psz_text
2194                      || ( psz_word - psz_text < 80 * i_width / 100
2195                            && psz_parser - psz_word > 40 * i_width / 100 ) )
2196                 {
2197                     char c = psz_text[i_width];
2198                     psz_text[i_width] = '\0';
2199                     fprintf( stdout, "%s\n%s", psz_text, psz_spaces );
2200                     psz_text += i_width;
2201                     psz_text[0] = c;
2202                 }
2203                 else
2204                 {
2205                     psz_word[-1] = '\0';
2206                     fprintf( stdout, "%s\n%s", psz_text, psz_spaces );
2207                     psz_text = psz_word;
2208                 }
2209             }
2210
2211             if( b_description && p_item->psz_longtext )
2212             {
2213                 sprintf( psz_buffer, "%s%s", p_item->psz_longtext, psz_suf );
2214                 b_description = VLC_FALSE;
2215                 psz_spaces = psz_spaces_longtext;
2216                 fprintf( stdout, "%s", psz_spaces );
2217                 goto description;
2218             }
2219         }
2220     }
2221
2222     /* Release the module list */
2223     vlc_list_release( p_list );
2224 }
2225
2226 /*****************************************************************************
2227  * ListModules: list the available modules with their description
2228  *****************************************************************************
2229  * Print a list of all available modules (builtins and plugins) and a short
2230  * description for each one.
2231  *****************************************************************************/
2232 static void ListModules( vlc_t *p_this )
2233 {
2234     vlc_list_t *p_list;
2235     module_t *p_parser;
2236     char psz_spaces[22];
2237     int i_index;
2238
2239     memset( psz_spaces, ' ', 22 );
2240
2241 #ifdef WIN32
2242     ShowConsole();
2243 #endif
2244
2245     /* List all modules */
2246     p_list = vlc_list_find( p_this, VLC_OBJECT_MODULE, FIND_ANYWHERE );
2247
2248     /* Enumerate each module */
2249     for( i_index = 0; i_index < p_list->i_count; i_index++ )
2250     {
2251         int i;
2252
2253         p_parser = (module_t *)p_list->p_values[i_index].p_object ;
2254
2255         /* Nasty hack, but right now I'm too tired to think about a nice
2256          * solution */
2257         i = 22 - strlen( p_parser->psz_object_name ) - 1;
2258         if( i < 0 ) i = 0;
2259         psz_spaces[i] = 0;
2260
2261         fprintf( stdout, "  %s%s %s\n", p_parser->psz_object_name,
2262                          psz_spaces, p_parser->psz_longname );
2263
2264         psz_spaces[i] = ' ';
2265     }
2266
2267     vlc_list_release( p_list );
2268
2269 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
2270     PauseConsole();
2271 #endif
2272 }
2273
2274 /*****************************************************************************
2275  * Version: print complete program version
2276  *****************************************************************************
2277  * Print complete program version and build number.
2278  *****************************************************************************/
2279 static void Version( void )
2280 {
2281 #ifdef WIN32
2282     ShowConsole();
2283 #endif
2284
2285     fprintf( stdout, VERSION_MESSAGE "\n" );
2286     fprintf( stdout,
2287       _("This program comes with NO WARRANTY, to the extent permitted by "
2288         "law.\nYou may redistribute it under the terms of the GNU General "
2289         "Public License;\nsee the file named COPYING for details.\n"
2290         "Written by the VideoLAN team; see the AUTHORS file.\n") );
2291
2292 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
2293     PauseConsole();
2294 #endif
2295 }
2296
2297 /*****************************************************************************
2298  * ShowConsole: On Win32, create an output console for debug messages
2299  *****************************************************************************
2300  * This function is useful only on Win32.
2301  *****************************************************************************/
2302 #ifdef WIN32 /*  */
2303 static void ShowConsole( void )
2304 {
2305 #   ifndef UNDER_CE
2306
2307     if( getenv( "PWD" ) && getenv( "PS1" ) ) return; /* cygwin shell */
2308
2309     AllocConsole();
2310     freopen( "CONOUT$", "w", stdout );
2311     freopen( "CONOUT$", "w", stderr );
2312     freopen( "CONIN$", "r", stdin );
2313
2314 #   endif
2315 }
2316 #endif
2317
2318 /*****************************************************************************
2319  * PauseConsole: On Win32, wait for a key press before closing the console
2320  *****************************************************************************
2321  * This function is useful only on Win32.
2322  *****************************************************************************/
2323 #ifdef WIN32 /*  */
2324 static void PauseConsole( void )
2325 {
2326 #   ifndef UNDER_CE
2327
2328     if( getenv( "PWD" ) && getenv( "PS1" ) ) return; /* cygwin shell */
2329     fprintf( stdout, _("\nPress the RETURN key to continue...\n") );
2330     getchar();
2331
2332 #   endif
2333 }
2334 #endif
2335
2336 /*****************************************************************************
2337  * ConsoleWidth: Return the console width in characters
2338  *****************************************************************************
2339  * We use the stty shell command to get the console width; if this fails or
2340  * if the width is less than 80, we default to 80.
2341  *****************************************************************************/
2342 static int ConsoleWidth( void )
2343 {
2344     int i_width = 80;
2345
2346 #ifndef WIN32
2347     char buf[20], *psz_parser;
2348     FILE *file;
2349     int i_ret;
2350
2351     file = popen( "stty size 2>/dev/null", "r" );
2352     if( file )
2353     {
2354         i_ret = fread( buf, 1, 20, file );
2355         if( i_ret > 0 )
2356         {
2357             buf[19] = '\0';
2358             psz_parser = strchr( buf, ' ' );
2359             if( psz_parser )
2360             {
2361                 i_ret = atoi( psz_parser + 1 );
2362                 if( i_ret >= 80 )
2363                 {
2364                     i_width = i_ret;
2365                 }
2366             }
2367         }
2368
2369         pclose( file );
2370     }
2371 #endif
2372
2373     return i_width;
2374 }
2375
2376 static int VerboseCallback( vlc_object_t *p_this, const char *psz_variable,
2377                      vlc_value_t old_val, vlc_value_t new_val, void *param)
2378 {
2379     vlc_t *p_vlc = (vlc_t *)p_this;
2380
2381     if( new_val.i_int >= -1 )
2382     {
2383         p_vlc->p_libvlc->i_verbose = __MIN( new_val.i_int, 2 );
2384     }
2385     return VLC_SUCCESS;
2386 }
2387
2388 /*****************************************************************************
2389  * InitDeviceValues: initialize device values
2390  *****************************************************************************
2391  * This function inits the dvd, vcd and cd-audio values
2392  *****************************************************************************/
2393 static void InitDeviceValues( vlc_t *p_vlc )
2394 {
2395 #ifdef HAVE_HAL
2396     LibHalContext * ctx;
2397     int i, i_devices;
2398     char **devices;
2399     char *block_dev;
2400     dbus_bool_t b_dvd;
2401
2402     if( ( ctx = hal_initialize( NULL, FALSE ) ) )
2403     {
2404         if( ( devices = hal_get_all_devices( ctx, &i_devices ) ) )
2405         {
2406             for( i = 0; i < i_devices; i++ )
2407             {
2408                 if( !hal_device_property_exists( ctx, devices[ i ],
2409                                                 "storage.cdrom.dvd" ) )
2410                 {
2411                     continue;
2412                 }
2413
2414                 b_dvd = hal_device_get_property_bool( ctx, devices[ i ],
2415                                                       "storage.cdrom.dvd" );
2416                 block_dev = hal_device_get_property_string( ctx, devices[ i ],
2417                                                             "block.device" );
2418
2419                 if( b_dvd )
2420                 {
2421                     config_PutPsz( p_vlc, "dvd", block_dev );
2422                 }
2423
2424                 config_PutPsz( p_vlc, "vcd", block_dev );
2425                 config_PutPsz( p_vlc, "cd-audio", block_dev );
2426
2427                 hal_free_string( block_dev );
2428             }
2429             hal_free_string_array( devices );
2430         }
2431
2432         hal_shutdown( ctx );
2433     }
2434 #endif
2435 }