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