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