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