]> git.sesse.net Git - vlc/blob - src/libvlc-common.c
A bit of cleanup and test
[vlc] / src / libvlc-common.c
1 /*****************************************************************************
2  * libvlc-common.c: libvlc instances creation and deletion
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 /** \file
29  * This file contains functions to create and destroy libvlc instances
30  */
31
32 /*****************************************************************************
33  * Pretend we are a builtin module
34  *****************************************************************************/
35 #define MODULE_NAME main
36 #define MODULE_PATH main
37 #define __BUILTIN__
38
39 /*****************************************************************************
40  * Preamble
41  *****************************************************************************/
42 #include <vlc/vlc.h>
43 #include <libvlc_internal.h>
44 #include <vlc/input.h>
45
46 #include <errno.h>                                                 /* ENOMEM */
47 #include <stdio.h>                                              /* sprintf() */
48 #include <string.h>                                            /* strerror() */
49 #include <stdlib.h>                                                /* free() */
50
51 #ifndef WIN32
52 #   include <netinet/in.h>                            /* BSD: struct in_addr */
53 #endif
54
55 #ifdef HAVE_UNISTD_H
56 #   include <unistd.h>
57 #elif defined( WIN32 ) && !defined( UNDER_CE )
58 #   include <io.h>
59 #endif
60
61 #ifdef WIN32                       /* optind, getopt(), included in unistd.h */
62 #   include "extras/getopt.h"
63 #endif
64
65 #ifdef HAVE_LOCALE_H
66 #   include <locale.h>
67 #endif
68
69 #ifdef HAVE_HAL
70 #   include <hal/libhal.h>
71 #endif
72
73 #include "vlc_cpu.h"                                        /* CPU detection */
74 #include "os_specific.h"
75
76 #include "vlc_error.h"
77
78 #include "vlc_playlist.h"
79 #include "vlc_interface.h"
80
81 #include "audio_output.h"
82
83 #include "vlc_video.h"
84 #include "video_output.h"
85
86 #include "stream_output.h"
87 #include "charset.h"
88
89 #include "libvlc.h"
90
91 /*****************************************************************************
92  * The evil global variable. We handle it with care, don't worry.
93  *****************************************************************************/
94 static libvlc_global_data_t   libvlc_global;
95 static libvlc_global_data_t * p_libvlc_global;
96 static libvlc_int_t *    p_static_vlc;
97
98 /*****************************************************************************
99  * Local prototypes
100  *****************************************************************************/
101 void LocaleInit( vlc_object_t * );
102 void LocaleDeinit( void );
103 static void SetLanguage   ( char const * );
104 static int  GetFilenames  ( libvlc_int_t *, int, char *[] );
105 static void Help          ( libvlc_int_t *, char const *psz_help_name );
106 static void Usage         ( libvlc_int_t *, char const *psz_module_name );
107 static void ListModules   ( libvlc_int_t * );
108 static void Version       ( void );
109
110 #ifdef WIN32
111 static void ShowConsole   ( vlc_bool_t );
112 static void PauseConsole  ( void );
113 #endif
114 static int  ConsoleWidth  ( void );
115
116 static int  VerboseCallback( vlc_object_t *, char const *,
117                              vlc_value_t, vlc_value_t, void * );
118
119 static void InitDeviceValues( libvlc_int_t * );
120
121 /*****************************************************************************
122  * vlc_current_object: return the current object.
123  *****************************************************************************
124  * If i_object is non-zero, return the corresponding object. Otherwise,
125  * return the statically allocated p_vlc object.
126  *****************************************************************************/
127 libvlc_int_t * vlc_current_object( int i_object )
128 {
129     if( i_object )
130     {
131          return vlc_object_get( p_libvlc_global, i_object );
132     }
133
134     return p_static_vlc;
135 }
136
137
138 /**
139  * Allocate a libvlc instance, initialize global data if needed
140  * It also initializes the threading system
141  */
142 libvlc_int_t * libvlc_InternalCreate( void )
143 {
144     int i_ret;
145     libvlc_int_t * p_libvlc = NULL;
146     vlc_value_t lockval;
147
148     /* &libvlc_global never changes,
149      * so we can safely call this multiple times. */
150     p_libvlc_global = &libvlc_global;
151
152     /* vlc_threads_init *must* be the first internal call! No other call is
153      * allowed before the thread system has been initialized. */
154     i_ret = vlc_threads_init( p_libvlc_global );
155     if( i_ret < 0 ) return NULL;
156
157     /* Now that the thread system is initialized, we don't have much, but
158      * at least we have var_Create */
159     var_Create( p_libvlc_global, "libvlc", VLC_VAR_MUTEX );
160     var_Get( p_libvlc_global, "libvlc", &lockval );
161     vlc_mutex_lock( lockval.p_address );
162     if( !libvlc_global.b_ready )
163     {
164         char *psz_env;
165
166         /* Guess what CPU we have */
167         libvlc_global.i_cpu = CPUCapabilities();
168
169         /* Find verbosity from VLC_VERBOSE environment variable */
170         psz_env = getenv( "VLC_VERBOSE" );
171         libvlc_global.i_verbose = psz_env ? atoi( psz_env ) : -1;
172
173 #if defined( HAVE_ISATTY ) && !defined( WIN32 )
174         libvlc_global.b_color = isatty( 2 ); /* 2 is for stderr */
175 #else
176         libvlc_global.b_color = VLC_FALSE;
177 #endif
178
179         /* Initialize message queue */
180         msg_Create( p_libvlc_global );
181
182         /* Announce who we are */
183         msg_Dbg( p_libvlc_global, COPYRIGHT_MESSAGE );
184         msg_Dbg( p_libvlc_global, "libvlc was configured with %s",
185                                 CONFIGURE_LINE );
186
187         /* The module bank will be initialized later */
188         libvlc_global.p_module_bank = NULL;
189
190         libvlc_global.b_ready = VLC_TRUE;
191     }
192     vlc_mutex_unlock( lockval.p_address );
193     var_Destroy( p_libvlc_global, "libvlc" );
194
195     /* Allocate a libvlc instance object */
196     p_libvlc = vlc_object_create( p_libvlc_global, VLC_OBJECT_LIBVLC );
197     if( p_libvlc == NULL ) return NULL;
198     p_libvlc->thread_id = 0;
199     p_libvlc->p_playlist = NULL;
200     p_libvlc->psz_object_name = "libvlc";
201
202     /* Initialize mutexes */
203     vlc_mutex_init( p_libvlc, &p_libvlc->config_lock );
204 #ifdef __APPLE__
205     vlc_mutex_init( p_libvlc, &p_libvlc->quicktime_lock );
206     vlc_thread_set_priority( p_libvlc, VLC_THREAD_PRIORITY_LOW );
207 #endif
208
209     /* Store our newly allocated structure in the global list */
210     vlc_object_attach( p_libvlc, p_libvlc_global );
211
212     /* Store data for the non-reentrant API */
213     p_static_vlc = p_libvlc;
214
215     return p_libvlc;
216 }
217
218 /**
219  * Initialize a libvlc instance
220  * This function initializes a previously allocated libvlc instance:
221  *  - CPU detection
222  *  - gettext initialization
223  *  - message queue, module bank and playlist initialization
224  *  - configuration and commandline parsing
225  */
226 int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc, char *ppsz_argv[] )
227 {
228     char         p_capabilities[200];
229     char *       p_tmp;
230     char *       psz_modules;
231     char *       psz_parser;
232     char *       psz_control;
233     vlc_bool_t   b_exit = VLC_FALSE;
234     int          i_ret = VLC_EEXIT;
235     module_t    *p_help_module;
236     playlist_t  *p_playlist;
237     vlc_value_t  val;
238 #if defined( ENABLE_NLS ) \
239      && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
240 # if defined (WIN32) || defined (__APPLE__)
241     char *       psz_language;
242 #endif
243 #endif
244
245     /* System specific initialization code */
246     system_Init( p_libvlc, &i_argc, ppsz_argv );
247
248     /* Get the executable name (similar to the basename command) */
249     if( i_argc > 0 )
250     {
251         p_libvlc->psz_object_name = p_tmp = ppsz_argv[ 0 ];
252         while( *p_tmp )
253         {
254             if( *p_tmp == '/' ) p_libvlc->psz_object_name = ++p_tmp;
255             else ++p_tmp;
256         }
257     }
258     else
259     {
260         p_libvlc->psz_object_name = "vlc";
261     }
262
263     /*
264      * Support for gettext
265      */
266     SetLanguage( "" );
267
268     /*
269      * Global iconv, must be done after setlocale()
270      * so that vlc_current_charset() works.
271      */
272     LocaleInit( (vlc_object_t *)p_libvlc );
273
274     /* Translate "C" to the language code: "fr", "en_GB", "nl", "ru"... */
275     msg_Dbg( p_libvlc, "translation test: code is \"%s\"", _("C") );
276
277     /* Initialize the module bank and load the configuration of the
278      * main module. We need to do this at this stage to be able to display
279      * a short help if required by the user. (short help == main module
280      * options) */
281     module_InitBank( p_libvlc );
282
283     /* Hack: insert the help module here */
284     p_help_module = vlc_object_create( p_libvlc, VLC_OBJECT_MODULE );
285     if( p_help_module == NULL )
286     {
287         module_EndBank( p_libvlc );
288         return VLC_EGENERIC;
289     }
290     p_help_module->psz_object_name = "help";
291     p_help_module->psz_longname = N_("Help options");
292     config_Duplicate( p_help_module, p_help_config );
293     vlc_object_attach( p_help_module, libvlc_global.p_module_bank );
294     /* End hack */
295
296     if( config_LoadCmdLine( p_libvlc, &i_argc, ppsz_argv, VLC_TRUE ) )
297     {
298         vlc_object_detach( p_help_module );
299         config_Free( p_help_module );
300         vlc_object_destroy( p_help_module );
301         module_EndBank( p_libvlc );
302         return VLC_EGENERIC;
303     }
304
305     /* Check for short help option */
306     if( config_GetInt( p_libvlc, "help" ) )
307     {
308         Help( p_libvlc, "help" );
309         b_exit = VLC_TRUE;
310         i_ret = VLC_EEXITSUCCESS;
311     }
312     /* Check for version option */
313     else if( config_GetInt( p_libvlc, "version" ) )
314     {
315         Version();
316         b_exit = VLC_TRUE;
317         i_ret = VLC_EEXITSUCCESS;
318     }
319
320     /* Set the config file stuff */
321     p_libvlc->psz_homedir = config_GetHomeDir();
322     p_libvlc->psz_userdir = config_GetUserDir();
323     if( p_libvlc->psz_userdir == NULL )
324         p_libvlc->psz_userdir = strdup(p_libvlc->psz_homedir);
325     p_libvlc->psz_configfile = config_GetPsz( p_libvlc, "config" );
326     if( p_libvlc->psz_configfile != NULL && p_libvlc->psz_configfile[0] == '~'
327          && p_libvlc->psz_configfile[1] == '/' )
328     {
329         char *psz = malloc( strlen(p_libvlc->psz_userdir)
330                              + strlen(p_libvlc->psz_configfile) );
331         /* This is incomplete : we should also support the ~cmassiot/ syntax. */
332         sprintf( psz, "%s/%s", p_libvlc->psz_userdir,
333                                p_libvlc->psz_configfile + 2 );
334         free( p_libvlc->psz_configfile );
335         p_libvlc->psz_configfile = psz;
336     }
337
338     /* Check for plugins cache options */
339     if( config_GetInt( p_libvlc, "reset-plugins-cache" ) )
340     {
341         libvlc_global.p_module_bank->b_cache_delete = VLC_TRUE;
342     }
343
344     /* Hack: remove the help module here */
345     vlc_object_detach( p_help_module );
346     /* End hack */
347
348     /* Will be re-done properly later on */
349     p_libvlc->p_libvlc_global->i_verbose = config_GetInt( p_libvlc, "verbose" );
350
351     /* Check for daemon mode */
352 #ifndef WIN32
353     if( config_GetInt( p_libvlc, "daemon" ) )
354     {
355 #if HAVE_DAEMON
356         if( daemon( 1, 0) != 0 )
357         {
358             msg_Err( p_libvlc, "Unable to fork vlc to daemon mode" );
359             b_exit = VLC_TRUE;
360         }
361
362         p_libvlc->p_libvlc_global->b_daemon = VLC_TRUE;
363
364         /* lets check if we need to write the pidfile */
365         char * psz_pidfile = config_GetPsz( p_libvlc, "pidfile" );
366
367         if( psz_pidfile != NULL )
368         {
369             FILE *pidfile;
370             pid_t i_pid = getpid ();
371             msg_Dbg( p_libvlc, "PID is %d, writing it to %s",
372                                i_pid, psz_pidfile );
373             pidfile = utf8_fopen( psz_pidfile,"w" );
374             if( pidfile != NULL )
375             {
376                 utf8_fprintf( pidfile, "%d", (int)i_pid );
377                 fclose( pidfile );
378             }
379             else
380             {
381                 msg_Err( p_libvlc, "cannot open pid file for writing: %s (%s)",
382                          psz_pidfile, strerror(errno) );
383             }
384         }
385         free( psz_pidfile );
386
387 #else
388         pid_t i_pid;
389
390         if( ( i_pid = fork() ) < 0 )
391         {
392             msg_Err( p_libvlc, "unable to fork vlc to daemon mode" );
393             b_exit = VLC_TRUE;
394         }
395         else if( i_pid )
396         {
397             /* This is the parent, exit right now */
398             msg_Dbg( p_libvlc, "closing parent process" );
399             b_exit = VLC_TRUE;
400             i_ret = VLC_EEXITSUCCESS;
401         }
402         else
403         {
404             /* We are the child */
405             msg_Dbg( p_libvlc, "daemon spawned" );
406             close( STDIN_FILENO );
407             close( STDOUT_FILENO );
408             close( STDERR_FILENO );
409
410             p_libvlc->p_libvlc_global->b_daemon = VLC_TRUE;
411         }
412 #endif
413     }
414 #endif
415
416     if( b_exit )
417     {
418         config_Free( p_help_module );
419         vlc_object_destroy( p_help_module );
420         module_EndBank( p_libvlc );
421         return i_ret;
422     }
423
424     /* Check for translation config option */
425 #if defined( ENABLE_NLS ) \
426      && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
427 # if defined (WIN32) || defined (__APPLE__)
428     /* This ain't really nice to have to reload the config here but it seems
429      * the only way to do it. */
430     config_LoadConfigFile( p_libvlc, "main" );
431     config_LoadCmdLine( p_libvlc, &i_argc, ppsz_argv, VLC_TRUE );
432
433     /* Check if the user specified a custom language */
434     psz_language = config_GetPsz( p_libvlc, "language" );
435     if( psz_language && *psz_language && strcmp( psz_language, "auto" ) )
436     {
437         vlc_bool_t b_cache_delete = libvlc_global.p_module_bank->b_cache_delete;
438
439         /* Reset the default domain */
440         SetLanguage( psz_language );
441
442         /* Translate "C" to the language code: "fr", "en_GB", "nl", "ru"... */
443         msg_Dbg( p_libvlc, "translation test: code is \"%s\"", _("C") );
444
445         module_EndBank( p_libvlc );
446         module_InitBank( p_libvlc );
447         config_LoadConfigFile( p_libvlc, "main" );
448         config_LoadCmdLine( p_libvlc, &i_argc, ppsz_argv, VLC_TRUE );
449         libvlc_global.p_module_bank->b_cache_delete = b_cache_delete;
450     }
451     if( psz_language ) free( psz_language );
452 # endif
453 #endif
454
455     /*
456      * Load the builtins and plugins into the module_bank.
457      * We have to do it before config_Load*() because this also gets the
458      * list of configuration options exported by each module and loads their
459      * default values.
460      */
461     module_LoadBuiltins( p_libvlc );
462     module_LoadPlugins( p_libvlc );
463     if( p_libvlc->b_die )
464     {
465         b_exit = VLC_TRUE;
466     }
467
468     msg_Dbg( p_libvlc, "module bank initialized, found %i modules",
469                     libvlc_global.p_module_bank->i_children );
470
471     /* Hack: insert the help module here */
472     vlc_object_attach( p_help_module, libvlc_global.p_module_bank );
473     /* End hack */
474
475     /* Check for help on modules */
476     if( (p_tmp = config_GetPsz( p_libvlc, "module" )) )
477     {
478         Help( p_libvlc, p_tmp );
479         free( p_tmp );
480         b_exit = VLC_TRUE;
481         i_ret = VLC_EEXITSUCCESS;
482     }
483     /* Check for long help option */
484     else if( config_GetInt( p_libvlc, "longhelp" ) )
485     {
486         Help( p_libvlc, "longhelp" );
487         b_exit = VLC_TRUE;
488         i_ret = VLC_EEXITSUCCESS;
489     }
490     /* Check for module list option */
491     else if( config_GetInt( p_libvlc, "list" ) )
492     {
493         ListModules( p_libvlc );
494         b_exit = VLC_TRUE;
495         i_ret = VLC_EEXITSUCCESS;
496     }
497
498     /* Check for config file options */
499     if( config_GetInt( p_libvlc, "reset-config" ) )
500     {
501         vlc_object_detach( p_help_module );
502         config_ResetAll( p_libvlc );
503         config_LoadCmdLine( p_libvlc, &i_argc, ppsz_argv, VLC_TRUE );
504         config_SaveConfigFile( p_libvlc, NULL );
505         vlc_object_attach( p_help_module, libvlc_global.p_module_bank );
506     }
507     if( config_GetInt( p_libvlc, "save-config" ) )
508     {
509         vlc_object_detach( p_help_module );
510         config_LoadConfigFile( p_libvlc, NULL );
511         config_LoadCmdLine( p_libvlc, &i_argc, ppsz_argv, VLC_TRUE );
512         config_SaveConfigFile( p_libvlc, NULL );
513         vlc_object_attach( p_help_module, libvlc_global.p_module_bank );
514     }
515
516     /* Hack: remove the help module here */
517     vlc_object_detach( p_help_module );
518     /* End hack */
519
520     if( b_exit )
521     {
522         config_Free( p_help_module );
523         vlc_object_destroy( p_help_module );
524         module_EndBank( p_libvlc );
525         return i_ret;
526     }
527
528     /*
529      * Init device values
530      */
531     InitDeviceValues( p_libvlc );
532
533     /*
534      * Override default configuration with config file settings
535      */
536     config_LoadConfigFile( p_libvlc, NULL );
537
538     /* Hack: insert the help module here */
539     vlc_object_attach( p_help_module, libvlc_global.p_module_bank );
540     /* End hack */
541
542     /*
543      * Override configuration with command line settings
544      */
545     if( config_LoadCmdLine( p_libvlc, &i_argc, ppsz_argv, VLC_FALSE ) )
546     {
547 #ifdef WIN32
548         ShowConsole( VLC_FALSE );
549         /* Pause the console because it's destroyed when we exit */
550         fprintf( stderr, "The command line options couldn't be loaded, check "
551                  "that they are valid.\n" );
552         PauseConsole();
553 #endif
554         vlc_object_detach( p_help_module );
555         config_Free( p_help_module );
556         vlc_object_destroy( p_help_module );
557         module_EndBank( p_libvlc );
558         return VLC_EGENERIC;
559     }
560
561     /* Hack: remove the help module here */
562     vlc_object_detach( p_help_module );
563     config_Free( p_help_module );
564     vlc_object_destroy( p_help_module );
565     /* End hack */
566
567     /*
568      * System specific configuration
569      */
570     system_Configure( p_libvlc, &i_argc, ppsz_argv );
571
572     /*
573      * Message queue options
574      */
575
576     var_Create( p_libvlc, "verbose", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
577     if( config_GetInt( p_libvlc, "quiet" ) )
578     {
579         val.i_int = -1;
580         var_Set( p_libvlc, "verbose", val );
581     }
582     var_AddCallback( p_libvlc, "verbose", VerboseCallback, NULL );
583     var_Change( p_libvlc, "verbose", VLC_VAR_TRIGGER_CALLBACKS, NULL, NULL );
584
585     libvlc_global.b_color = libvlc_global.b_color && 
586                                 config_GetInt( p_libvlc, "color" );
587
588     /*
589      * Output messages that may still be in the queue
590      */
591     msg_Flush( p_libvlc );
592
593     /* p_libvlc initialization. FIXME ? */
594
595     if( !config_GetInt( p_libvlc, "fpu" ) )
596         libvlc_global.i_cpu &= ~CPU_CAPABILITY_FPU;
597
598 #if defined( __i386__ ) || defined( __x86_64__ )
599     if( !config_GetInt( p_libvlc, "mmx" ) )
600         libvlc_global.i_cpu &= ~CPU_CAPABILITY_MMX;
601     if( !config_GetInt( p_libvlc, "3dn" ) )
602         libvlc_global.i_cpu &= ~CPU_CAPABILITY_3DNOW;
603     if( !config_GetInt( p_libvlc, "mmxext" ) )
604         libvlc_global.i_cpu &= ~CPU_CAPABILITY_MMXEXT;
605     if( !config_GetInt( p_libvlc, "sse" ) )
606         libvlc_global.i_cpu &= ~CPU_CAPABILITY_SSE;
607     if( !config_GetInt( p_libvlc, "sse2" ) )
608         libvlc_global.i_cpu &= ~CPU_CAPABILITY_SSE2;
609 #endif
610 #if defined( __powerpc__ ) || defined( __ppc__ ) || defined( __ppc64__ )
611     if( !config_GetInt( p_libvlc, "altivec" ) )
612         libvlc_global.i_cpu &= ~CPU_CAPABILITY_ALTIVEC;
613 #endif
614
615 #define PRINT_CAPABILITY( capability, string )                              \
616     if( libvlc_global.i_cpu & capability )                                         \
617     {                                                                       \
618         strncat( p_capabilities, string " ",                                \
619                  sizeof(p_capabilities) - strlen(p_capabilities) );         \
620         p_capabilities[sizeof(p_capabilities) - 1] = '\0';                  \
621     }
622
623     p_capabilities[0] = '\0';
624     PRINT_CAPABILITY( CPU_CAPABILITY_486, "486" );
625     PRINT_CAPABILITY( CPU_CAPABILITY_586, "586" );
626     PRINT_CAPABILITY( CPU_CAPABILITY_PPRO, "Pentium Pro" );
627     PRINT_CAPABILITY( CPU_CAPABILITY_MMX, "MMX" );
628     PRINT_CAPABILITY( CPU_CAPABILITY_3DNOW, "3DNow!" );
629     PRINT_CAPABILITY( CPU_CAPABILITY_MMXEXT, "MMXEXT" );
630     PRINT_CAPABILITY( CPU_CAPABILITY_SSE, "SSE" );
631     PRINT_CAPABILITY( CPU_CAPABILITY_SSE2, "SSE2" );
632     PRINT_CAPABILITY( CPU_CAPABILITY_ALTIVEC, "AltiVec" );
633     PRINT_CAPABILITY( CPU_CAPABILITY_FPU, "FPU" );
634     msg_Dbg( p_libvlc, "CPU has capabilities %s", p_capabilities );
635
636     /*
637      * Choose the best memcpy module
638      */
639     p_libvlc->p_memcpy_module = module_Need( p_libvlc, "memcpy", "$memcpy", 0 );
640
641     if( p_libvlc->pf_memcpy == NULL )
642     {
643         p_libvlc->pf_memcpy = memcpy;
644     }
645
646     if( p_libvlc->pf_memset == NULL )
647     {
648         p_libvlc->pf_memset = memset;
649     }
650
651     p_libvlc->b_stats = config_GetInt( p_libvlc, "stats" );
652     p_libvlc->i_timers = 0;
653     p_libvlc->pp_timers = NULL;
654     vlc_mutex_init( p_libvlc, &p_libvlc->timer_lock );
655
656     /*
657      * Initialize hotkey handling
658      */
659     var_Create( p_libvlc, "key-pressed", VLC_VAR_INTEGER );
660     p_libvlc->p_hotkeys = malloc( sizeof(p_hotkeys) );
661     /* Do a copy (we don't need to modify the strings) */
662     memcpy( p_libvlc->p_hotkeys, p_hotkeys, sizeof(p_hotkeys) );
663
664     /* Initialize playlist and get commandline files */
665     playlist_ThreadCreate( p_libvlc );
666     if( !p_libvlc->p_playlist )
667     {
668         msg_Err( p_libvlc, "playlist initialization failed" );
669         if( p_libvlc->p_memcpy_module != NULL )
670         {
671             module_Unneed( p_libvlc, p_libvlc->p_memcpy_module );
672         }
673         module_EndBank( p_libvlc );
674         return VLC_EGENERIC;
675     }
676     p_playlist = p_libvlc->p_playlist;
677
678     psz_modules = config_GetPsz( p_playlist, "services-discovery" );
679     if( psz_modules && *psz_modules )
680     {
681         /* Add service discovery modules */
682         playlist_AddSDModules( p_playlist, psz_modules );
683     }
684     if( psz_modules ) free( psz_modules );
685
686     /*
687      * Load background interfaces
688      */
689     psz_modules = config_GetPsz( p_libvlc, "extraintf" );
690     psz_control = config_GetPsz( p_libvlc, "control" );
691
692     if( psz_modules && *psz_modules && psz_control && *psz_control )
693     {
694         psz_modules = (char *)realloc( psz_modules, strlen( psz_modules ) +
695                                                     strlen( psz_control ) + 1 );
696         sprintf( psz_modules, "%s:%s", psz_modules, psz_control );
697     }
698     else if( psz_control && *psz_control )
699     {
700         if( psz_modules ) free( psz_modules );
701         psz_modules = strdup( psz_control );
702     }
703
704     psz_parser = psz_modules;
705     while ( psz_parser && *psz_parser )
706     {
707         char *psz_module, *psz_temp;
708         psz_module = psz_parser;
709         psz_parser = strchr( psz_module, ':' );
710         if ( psz_parser )
711         {
712             *psz_parser = '\0';
713             psz_parser++;
714         }
715         psz_temp = (char *)malloc( strlen(psz_module) + sizeof(",none") );
716         if( psz_temp )
717         {
718             sprintf( psz_temp, "%s,none", psz_module );
719             VLC_AddIntf( 0, psz_temp, VLC_FALSE, VLC_FALSE );
720             free( psz_temp );
721         }
722     }
723     if ( psz_modules )
724     {
725         free( psz_modules );
726     }
727
728     /*
729      * Always load the hotkeys interface if it exists
730      */
731     VLC_AddIntf( 0, "hotkeys,none", VLC_FALSE, VLC_FALSE );
732
733     /*
734      * If needed, load the Xscreensaver interface
735      * Currently, only for X
736      */
737 #ifdef HAVE_X11_XLIB_H
738     if( config_GetInt( p_libvlc, "disable-screensaver" ) == 1 )
739     {
740         VLC_AddIntf( 0, "screensaver,none", VLC_FALSE, VLC_FALSE );
741     }
742 #endif
743
744     if( config_GetInt( p_libvlc, "file-logging" ) == 1 )
745     {
746         VLC_AddIntf( 0, "logger,none", VLC_FALSE, VLC_FALSE );
747     }
748 #ifdef HAVE_SYSLOG_H
749     if( config_GetInt( p_libvlc, "syslog" ) == 1 )
750     {
751         char *psz_logmode = "logmode=syslog";
752         libvlc_InternalAddIntf( 0, "logger,none", VLC_FALSE, VLC_FALSE,
753                                 1, &psz_logmode );
754     }
755 #endif
756
757     if( config_GetInt( p_libvlc, "show-intf" ) == 1 )
758     {
759         VLC_AddIntf( 0, "showintf,none", VLC_FALSE, VLC_FALSE );
760     }
761
762     if( config_GetInt( p_libvlc, "network-synchronisation") == 1 )
763     {
764         VLC_AddIntf( 0, "netsync,none", VLC_FALSE, VLC_FALSE );
765     }
766
767     /*
768      * FIXME: kludge to use a p_libvlc-local variable for the Mozilla plugin
769      */
770     var_Create( p_libvlc, "drawable", VLC_VAR_INTEGER );
771     var_Create( p_libvlc, "drawable-view-top", VLC_VAR_INTEGER );
772     var_Create( p_libvlc, "drawable-view-left", VLC_VAR_INTEGER );
773     var_Create( p_libvlc, "drawable-view-bottom", VLC_VAR_INTEGER );
774     var_Create( p_libvlc, "drawable-view-right", VLC_VAR_INTEGER );
775     var_Create( p_libvlc, "drawable-clip-top", VLC_VAR_INTEGER );
776     var_Create( p_libvlc, "drawable-clip-left", VLC_VAR_INTEGER );
777     var_Create( p_libvlc, "drawable-clip-bottom", VLC_VAR_INTEGER );
778     var_Create( p_libvlc, "drawable-clip-right", VLC_VAR_INTEGER );
779
780     /* Create volume callback system. */
781     var_Create( p_libvlc, "volume-change", VLC_VAR_BOOL );
782
783     /*
784      * Get input filenames given as commandline arguments
785      */
786     GetFilenames( p_libvlc, i_argc, ppsz_argv );
787
788     /*
789      * Get --open argument
790      */
791     var_Create( p_libvlc, "open", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
792     var_Get( p_libvlc, "open", &val );
793     if ( val.psz_string != NULL && *val.psz_string )
794     {
795         VLC_AddTarget( p_libvlc->i_object_id, val.psz_string, NULL, 0,
796                        PLAYLIST_INSERT, 0 );
797     }
798     if ( val.psz_string != NULL ) free( val.psz_string );
799
800     return VLC_SUCCESS;
801 }
802
803 /**
804  * Cleanup a libvlc instance. The instance is not completely deallocated
805  * \param p_libvlc the instance to clean
806  */
807 int libvlc_InternalCleanup( libvlc_int_t *p_libvlc )
808 {
809     intf_thread_t      * p_intf;
810     vout_thread_t      * p_vout;
811     aout_instance_t    * p_aout;
812     announce_handler_t * p_announce;
813
814     /* Ask the interfaces to stop and destroy them */
815     msg_Dbg( p_libvlc, "removing all interfaces" );
816     while( (p_intf = vlc_object_find( p_libvlc, VLC_OBJECT_INTF, FIND_CHILD )) )
817     {
818         intf_StopThread( p_intf );
819         vlc_object_detach( p_intf );
820         vlc_object_release( p_intf );
821         intf_Destroy( p_intf );
822     }
823
824     /* Free playlist */
825     msg_Dbg( p_libvlc, "removing playlist" );
826     playlist_ThreadDestroy( p_libvlc->p_playlist );
827
828     /* Free video outputs */
829     msg_Dbg( p_libvlc, "removing all video outputs" );
830     while( (p_vout = vlc_object_find( p_libvlc, VLC_OBJECT_VOUT, FIND_CHILD )) )
831     {
832         vlc_object_detach( p_vout );
833         vlc_object_release( p_vout );
834         vout_Destroy( p_vout );
835     }
836
837     /* Free audio outputs */
838     msg_Dbg( p_libvlc, "removing all audio outputs" );
839     while( (p_aout = vlc_object_find( p_libvlc, VLC_OBJECT_AOUT, FIND_CHILD )) )
840     {
841         vlc_object_detach( (vlc_object_t *)p_aout );
842         vlc_object_release( (vlc_object_t *)p_aout );
843         aout_Delete( p_aout );
844     }
845
846     stats_TimersDumpAll( p_libvlc );
847     stats_TimersClean( p_libvlc );
848
849     /* Free announce handler(s?) */
850     while( (p_announce = vlc_object_find( p_libvlc, VLC_OBJECT_ANNOUNCE,
851                                                  FIND_CHILD ) ) )
852     {
853         msg_Dbg( p_libvlc, "removing announce handler" );
854         vlc_object_detach( p_announce );
855         vlc_object_release( p_announce );
856         announce_HandlerDestroy( p_announce );
857     }
858     return VLC_SUCCESS;
859 }
860
861 /**
862  * Destroy everything.
863  * This function requests the running threads to finish, waits for their
864  * termination, and destroys their structure.
865  * It stops the thread systems: no instance can run after this has run
866  * \param p_libvlc the instance to destroy
867  * \param b_release whether we should do a release on the instance
868  */
869 int libvlc_InternalDestroy( libvlc_int_t *p_libvlc, vlc_bool_t b_release )
870 {
871     if( p_libvlc->p_memcpy_module )
872     {
873         module_Unneed( p_libvlc, p_libvlc->p_memcpy_module );
874         p_libvlc->p_memcpy_module = NULL;
875     }
876
877     /* Free module bank. It is refcounted, so we call this each time  */
878     module_EndBank( p_libvlc );
879
880     FREENULL( p_libvlc->psz_homedir );
881     FREENULL( p_libvlc->psz_userdir );
882     FREENULL( p_libvlc->psz_configfile );
883     FREENULL( p_libvlc->p_hotkeys );
884
885     /* System specific cleaning code */
886     system_End( p_libvlc );
887
888     /*
889      * Free message queue.
890      * Nobody shall use msg_* afterward.
891      */
892     msg_Flush( p_libvlc );
893     msg_Destroy( p_libvlc_global );
894
895     /* Destroy global iconv */
896     LocaleDeinit();
897
898     /* Destroy mutexes */
899     vlc_mutex_destroy( &p_libvlc->config_lock );
900
901     vlc_object_detach( p_libvlc );
902     if( b_release ) vlc_object_release( p_libvlc );
903     vlc_object_destroy( p_libvlc );
904
905     /* Stop thread system: last one out please shut the door! */
906     vlc_threads_end( p_libvlc_global );
907
908     return VLC_SUCCESS;
909 }
910
911 /**
912  * Add an interface plugin and run it
913  */
914 int libvlc_InternalAddIntf( libvlc_int_t *p_libvlc,
915                             char const *psz_module,
916                             vlc_bool_t b_block, vlc_bool_t b_play,
917                             int i_options, char **ppsz_options )
918 {
919     int i_err;
920     intf_thread_t *p_intf;
921
922 #ifndef WIN32
923     if( p_libvlc->p_libvlc_global->b_daemon && b_block && !psz_module )
924     {
925         /* Daemon mode hack.
926          * We prefer the dummy interface if none is specified. */
927         char *psz_interface = config_GetPsz( p_libvlc, "intf" );
928         if( !psz_interface || !*psz_interface ) psz_module = "dummy";
929         if( psz_interface ) free( psz_interface );
930     }
931 #endif
932
933     /* Try to create the interface */
934     p_intf = intf_Create( p_libvlc, psz_module ? psz_module : "$intf",
935                           i_options, ppsz_options );
936
937     if( p_intf == NULL )
938     {
939         msg_Err( p_libvlc, "interface \"%s\" initialization failed",
940                  psz_module );
941         return VLC_EGENERIC;
942     }
943
944     /* Interface doesn't handle play on start so do it ourselves */
945     if( !p_intf->b_play && b_play )
946         playlist_Play( p_libvlc->p_playlist );
947
948     /* Try to run the interface */
949     p_intf->b_play = b_play;
950     p_intf->b_block = b_block;
951     i_err = intf_RunThread( p_intf );
952     if( i_err )
953     {
954         vlc_object_detach( p_intf );
955         intf_Destroy( p_intf );
956         return i_err;
957     }
958     return VLC_SUCCESS;
959 };
960
961
962 /*****************************************************************************
963  * SetLanguage: set the interface language.
964  *****************************************************************************
965  * We set the LC_MESSAGES locale category for interface messages and buttons,
966  * as well as the LC_CTYPE category for string sorting and possible wide
967  * character support.
968  *****************************************************************************/
969 static void SetLanguage ( char const *psz_lang )
970 {
971 #if defined( ENABLE_NLS ) \
972      && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
973
974     char *          psz_path;
975 #if defined( __APPLE__ ) || defined ( WIN32 ) || defined( SYS_BEOS )
976     char            psz_tmp[1024];
977 #endif
978
979     if( psz_lang && !*psz_lang )
980     {
981 #   if defined( HAVE_LC_MESSAGES )
982         setlocale( LC_MESSAGES, psz_lang );
983 #   endif
984         setlocale( LC_CTYPE, psz_lang );
985     }
986     else if( psz_lang )
987     {
988 #ifdef __APPLE__
989         /* I need that under Darwin, please check it doesn't disturb
990          * other platforms. --Meuuh */
991         setenv( "LANG", psz_lang, 1 );
992
993 #elif defined( SYS_BEOS ) || defined( WIN32 )
994         /* We set LC_ALL manually because it is the only way to set
995          * the language at runtime under eg. Windows. Beware that this
996          * makes the environment unconsistent when libvlc is unloaded and
997          * should probably be moved to a safer place like vlc.c. */
998         static char psz_lcall[20];
999         snprintf( psz_lcall, 19, "LC_ALL=%s", psz_lang );
1000         psz_lcall[19] = '\0';
1001         putenv( psz_lcall );
1002 #endif
1003
1004         setlocale( LC_ALL, psz_lang );
1005     }
1006
1007     /* Specify where to find the locales for current domain */
1008 #if !defined( __APPLE__ ) && !defined( WIN32 ) && !defined( SYS_BEOS )
1009     psz_path = LOCALEDIR;
1010 #else
1011     snprintf( psz_tmp, sizeof(psz_tmp), "%s/%s", libvlc_global.psz_vlcpath,
1012               "locale" );
1013     psz_path = psz_tmp;
1014 #endif
1015     if( !bindtextdomain( PACKAGE_NAME, psz_path ) )
1016     {
1017         fprintf( stderr, "warning: couldn't bind domain %s in directory %s\n",
1018                  PACKAGE_NAME, psz_path );
1019     }
1020
1021     /* Set the default domain */
1022     bind_textdomain_codeset( PACKAGE_NAME, "UTF-8" );
1023 #endif
1024 }
1025
1026 /*****************************************************************************
1027  * GetFilenames: parse command line options which are not flags
1028  *****************************************************************************
1029  * Parse command line for input files as well as their associated options.
1030  * An option always follows its associated input and begins with a ":".
1031  *****************************************************************************/
1032 static int GetFilenames( libvlc_int_t *p_vlc, int i_argc, char *ppsz_argv[] )
1033 {
1034     int i_opt, i_options;
1035
1036     /* We assume that the remaining parameters are filenames
1037      * and their input options */
1038     for( i_opt = i_argc - 1; i_opt >= optind; i_opt-- )
1039     {
1040         const char *psz_target;
1041         i_options = 0;
1042
1043         /* Count the input options */
1044         while( *ppsz_argv[ i_opt ] == ':' && i_opt > optind )
1045         {
1046             i_options++;
1047             i_opt--;
1048         }
1049
1050         /* TODO: write an internal function of this one, to avoid
1051          *       unnecessary lookups. */
1052         /* FIXME: should we convert options to UTF-8 as well ?? */
1053         psz_target = FromLocale( ppsz_argv[ i_opt ] );
1054         VLC_AddTarget( p_vlc->i_object_id, psz_target,
1055                        (char const **)( i_options ? &ppsz_argv[i_opt + 1] :
1056                                         NULL ), i_options,
1057                        PLAYLIST_INSERT, 0 );
1058         LocaleFree( psz_target );
1059     }
1060
1061     return VLC_SUCCESS;
1062 }
1063
1064 /*****************************************************************************
1065  * Help: print program help
1066  *****************************************************************************
1067  * Print a short inline help. Message interface is initialized at this stage.
1068  *****************************************************************************/
1069 static void Help( libvlc_int_t *p_this, char const *psz_help_name )
1070 {
1071 #ifdef WIN32
1072     ShowConsole( VLC_TRUE );
1073 #endif
1074
1075     if( psz_help_name && !strcmp( psz_help_name, "help" ) )
1076     {
1077         utf8_fprintf( stdout, VLC_USAGE, p_this->psz_object_name );
1078         Usage( p_this, "help" );
1079         Usage( p_this, "main" );
1080     }
1081     else if( psz_help_name && !strcmp( psz_help_name, "longhelp" ) )
1082     {
1083         utf8_fprintf( stdout, VLC_USAGE, p_this->psz_object_name );
1084         Usage( p_this, NULL );
1085     }
1086     else if( psz_help_name )
1087     {
1088         Usage( p_this, psz_help_name );
1089     }
1090
1091 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1092     PauseConsole();
1093 #endif
1094 }
1095
1096 /*****************************************************************************
1097  * Usage: print module usage
1098  *****************************************************************************
1099  * Print a short inline help. Message interface is initialized at this stage.
1100  *****************************************************************************/
1101 static void Usage( libvlc_int_t *p_this, char const *psz_module_name )
1102 {
1103 #define FORMAT_STRING "  %s --%s%s%s%s%s%s%s "
1104     /* short option ------'    |     | | | |  | |
1105      * option name ------------'     | | | |  | |
1106      * <bra -------------------------' | | |  | |
1107      * option type or "" --------------' | |  | |
1108      * ket> -----------------------------' |  | |
1109      * padding spaces ---------------------'  | |
1110      * comment -------------------------------' |
1111      * comment suffix --------------------------'
1112      *
1113      * The purpose of having bra and ket is that we might i18n them as well.
1114      */
1115 #define LINE_START 8
1116 #define PADDING_SPACES 25
1117     vlc_list_t *p_list;
1118     module_t *p_parser;
1119     module_config_t *p_item;
1120     char psz_spaces_text[PADDING_SPACES+LINE_START+1];
1121     char psz_spaces_longtext[LINE_START+3];
1122     char psz_format[sizeof(FORMAT_STRING)];
1123     char psz_buffer[10000];
1124     char psz_short[4];
1125     int i_index;
1126     int i_width = ConsoleWidth() - (PADDING_SPACES+LINE_START+1);
1127     vlc_bool_t b_advanced = config_GetInt( p_this, "advanced" );
1128     vlc_bool_t b_description;
1129
1130     memset( psz_spaces_text, ' ', PADDING_SPACES+LINE_START );
1131     psz_spaces_text[PADDING_SPACES+LINE_START] = '\0';
1132     memset( psz_spaces_longtext, ' ', LINE_START+2 );
1133     psz_spaces_longtext[LINE_START+2] = '\0';
1134
1135     strcpy( psz_format, FORMAT_STRING );
1136
1137     /* List all modules */
1138     p_list = vlc_list_find( p_this, VLC_OBJECT_MODULE, FIND_ANYWHERE );
1139
1140     /* Enumerate the config for each module */
1141     for( i_index = 0; i_index < p_list->i_count; i_index++ )
1142     {
1143         vlc_bool_t b_help_module;
1144
1145         p_parser = (module_t *)p_list->p_values[i_index].p_object ;
1146
1147         if( psz_module_name && strcmp( psz_module_name,
1148                                        p_parser->psz_object_name ) )
1149         {
1150             continue;
1151         }
1152
1153         /* Ignore modules without config options */
1154         if( !p_parser->i_config_items )
1155         {
1156             continue;
1157         }
1158
1159         /* Ignore modules with only advanced config options if requested */
1160         if( !b_advanced )
1161         {
1162             for( p_item = p_parser->p_config;
1163                  p_item->i_type != CONFIG_HINT_END;
1164                  p_item++ )
1165             {
1166                 if( (p_item->i_type & CONFIG_ITEM) &&
1167                     !p_item->b_advanced ) break;
1168             }
1169             if( p_item->i_type == CONFIG_HINT_END ) continue;
1170         }
1171
1172         /* Print name of module */
1173         if( strcmp( "main", p_parser->psz_object_name ) )
1174         utf8_fprintf( stdout, "\n %s\n", p_parser->psz_longname );
1175
1176         b_help_module = !strcmp( "help", p_parser->psz_object_name );
1177
1178         /* Print module options */
1179         for( p_item = p_parser->p_config;
1180              p_item->i_type != CONFIG_HINT_END;
1181              p_item++ )
1182         {
1183             char *psz_text, *psz_spaces = psz_spaces_text;
1184             char *psz_bra = NULL, *psz_type = NULL, *psz_ket = NULL;
1185             char *psz_suf = "", *psz_prefix = NULL;
1186             signed int i;
1187
1188             /* Skip deprecated options */
1189             if( p_item->psz_current )
1190             {
1191                 continue;
1192             }
1193             /* Skip advanced options if requested */
1194             if( p_item->b_advanced && !b_advanced )
1195             {
1196                 continue;
1197             }
1198
1199             switch( p_item->i_type )
1200             {
1201             case CONFIG_HINT_CATEGORY:
1202             case CONFIG_HINT_USAGE:
1203                 if( !strcmp( "main", p_parser->psz_object_name ) )
1204                 utf8_fprintf( stdout, "\n %s\n", p_item->psz_text );
1205                 break;
1206
1207             case CONFIG_ITEM_STRING:
1208             case CONFIG_ITEM_FILE:
1209             case CONFIG_ITEM_DIRECTORY:
1210             case CONFIG_ITEM_MODULE: /* We could also have "=<" here */
1211             case CONFIG_ITEM_MODULE_CAT:
1212             case CONFIG_ITEM_MODULE_LIST:
1213             case CONFIG_ITEM_MODULE_LIST_CAT:
1214                 psz_bra = " <"; psz_type = _("string"); psz_ket = ">";
1215
1216                 if( p_item->ppsz_list )
1217                 {
1218                     psz_bra = " {";
1219                     psz_type = psz_buffer;
1220                     psz_type[0] = '\0';
1221                     for( i = 0; p_item->ppsz_list[i]; i++ )
1222                     {
1223                         if( i ) strcat( psz_type, "," );
1224                         strcat( psz_type, p_item->ppsz_list[i] );
1225                     }
1226                     psz_ket = "}";
1227                 }
1228                 break;
1229             case CONFIG_ITEM_INTEGER:
1230             case CONFIG_ITEM_KEY: /* FIXME: do something a bit more clever */
1231                 psz_bra = " <"; psz_type = _("integer"); psz_ket = ">";
1232
1233                 if( p_item->i_list )
1234                 {
1235                     psz_bra = " {";
1236                     psz_type = psz_buffer;
1237                     psz_type[0] = '\0';
1238                     for( i = 0; p_item->ppsz_list_text[i]; i++ )
1239                     {
1240                         if( i ) strcat( psz_type, ", " );
1241                         sprintf( psz_type + strlen(psz_type), "%i (%s)",
1242                                  p_item->pi_list[i],
1243                                  p_item->ppsz_list_text[i] );
1244                     }
1245                     psz_ket = "}";
1246                 }
1247                 break;
1248             case CONFIG_ITEM_FLOAT:
1249                 psz_bra = " <"; psz_type = _("float"); psz_ket = ">";
1250                 break;
1251             case CONFIG_ITEM_BOOL:
1252                 psz_bra = ""; psz_type = ""; psz_ket = "";
1253                 if( !b_help_module )
1254                 {
1255                     psz_suf = p_item->i_value ? _(" (default enabled)") :
1256                                                 _(" (default disabled)");
1257                 }
1258                 break;
1259             }
1260
1261             if( !psz_type )
1262             {
1263                 continue;
1264             }
1265
1266             /* Add short option if any */
1267             if( p_item->i_short )
1268             {
1269                 sprintf( psz_short, "-%c,", p_item->i_short );
1270             }
1271             else
1272             {
1273                 strcpy( psz_short, "   " );
1274             }
1275
1276             i = PADDING_SPACES - strlen( p_item->psz_name )
1277                  - strlen( psz_bra ) - strlen( psz_type )
1278                  - strlen( psz_ket ) - 1;
1279
1280             if( p_item->i_type == CONFIG_ITEM_BOOL && !b_help_module )
1281             {
1282                 psz_prefix =  ", --no-";
1283                 i -= strlen( p_item->psz_name ) + strlen( psz_prefix );
1284             }
1285
1286             if( i < 0 )
1287             {
1288                 psz_spaces[0] = '\n';
1289                 i = 0;
1290             }
1291             else
1292             {
1293                 psz_spaces[i] = '\0';
1294             }
1295
1296             if( p_item->i_type == CONFIG_ITEM_BOOL && !b_help_module )
1297             {
1298                 utf8_fprintf( stdout, psz_format, psz_short, p_item->psz_name,
1299                          psz_prefix, p_item->psz_name, psz_bra, psz_type,
1300                          psz_ket, psz_spaces );
1301             }
1302             else
1303             {
1304                 utf8_fprintf( stdout, psz_format, psz_short, p_item->psz_name,
1305                          "", "", psz_bra, psz_type, psz_ket, psz_spaces );
1306             }
1307
1308             psz_spaces[i] = ' ';
1309
1310             /* We wrap the rest of the output */
1311             sprintf( psz_buffer, "%s%s", p_item->psz_text, psz_suf );
1312             b_description = config_GetInt( p_this, "help-verbose" );
1313
1314  description:
1315             psz_text = psz_buffer;
1316             while( *psz_text )
1317             {
1318                 char *psz_parser, *psz_word;
1319                 size_t i_end = strlen( psz_text );
1320
1321                 /* If the remaining text fits in a line, print it. */
1322                 if( i_end <= (size_t)i_width )
1323                 {
1324                     utf8_fprintf( stdout, "%s\n", psz_text );
1325                     break;
1326                 }
1327
1328                 /* Otherwise, eat as many words as possible */
1329                 psz_parser = psz_text;
1330                 do
1331                 {
1332                     psz_word = psz_parser;
1333                     psz_parser = strchr( psz_word, ' ' );
1334                     /* If no space was found, we reached the end of the text
1335                      * block; otherwise, we skip the space we just found. */
1336                     psz_parser = psz_parser ? psz_parser + 1
1337                                             : psz_text + i_end;
1338
1339                 } while( psz_parser - psz_text <= i_width );
1340
1341                 /* We cut a word in one of these cases:
1342                  *  - it's the only word in the line and it's too long.
1343                  *  - we used less than 80% of the width and the word we are
1344                  *    going to wrap is longer than 40% of the width, and even
1345                  *    if the word would have fit in the next line. */
1346                 if( psz_word == psz_text
1347                      || ( psz_word - psz_text < 80 * i_width / 100
1348                            && psz_parser - psz_word > 40 * i_width / 100 ) )
1349                 {
1350                     char c = psz_text[i_width];
1351                     psz_text[i_width] = '\0';
1352                     utf8_fprintf( stdout, "%s\n%s", psz_text, psz_spaces );
1353                     psz_text += i_width;
1354                     psz_text[0] = c;
1355                 }
1356                 else
1357                 {
1358                     psz_word[-1] = '\0';
1359                     utf8_fprintf( stdout, "%s\n%s", psz_text, psz_spaces );
1360                     psz_text = psz_word;
1361                 }
1362             }
1363
1364             if( b_description && p_item->psz_longtext )
1365             {
1366                 sprintf( psz_buffer, "%s%s", p_item->psz_longtext, psz_suf );
1367                 b_description = VLC_FALSE;
1368                 psz_spaces = psz_spaces_longtext;
1369                 utf8_fprintf( stdout, "%s", psz_spaces );
1370                 goto description;
1371             }
1372         }
1373     }
1374
1375     /* Release the module list */
1376     vlc_list_release( p_list );
1377 }
1378
1379 /*****************************************************************************
1380  * ListModules: list the available modules with their description
1381  *****************************************************************************
1382  * Print a list of all available modules (builtins and plugins) and a short
1383  * description for each one.
1384  *****************************************************************************/
1385 static void ListModules( libvlc_int_t *p_this )
1386 {
1387     vlc_list_t *p_list;
1388     module_t *p_parser;
1389     char psz_spaces[22];
1390     int i_index;
1391
1392     memset( psz_spaces, ' ', 22 );
1393
1394 #ifdef WIN32
1395     ShowConsole( VLC_TRUE );
1396 #endif
1397
1398     /* List all modules */
1399     p_list = vlc_list_find( p_this, VLC_OBJECT_MODULE, FIND_ANYWHERE );
1400
1401     /* Enumerate each module */
1402     for( i_index = 0; i_index < p_list->i_count; i_index++ )
1403     {
1404         int i;
1405
1406         p_parser = (module_t *)p_list->p_values[i_index].p_object ;
1407
1408         /* Nasty hack, but right now I'm too tired to think about a nice
1409          * solution */
1410         i = 22 - strlen( p_parser->psz_object_name ) - 1;
1411         if( i < 0 ) i = 0;
1412         psz_spaces[i] = 0;
1413
1414         utf8_fprintf( stdout, "  %s%s %s\n", p_parser->psz_object_name,
1415                          psz_spaces, p_parser->psz_longname );
1416
1417         psz_spaces[i] = ' ';
1418     }
1419
1420     vlc_list_release( p_list );
1421
1422 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1423     PauseConsole();
1424 #endif
1425 }
1426
1427 /*****************************************************************************
1428  * Version: print complete program version
1429  *****************************************************************************
1430  * Print complete program version and build number.
1431  *****************************************************************************/
1432 static void Version( void )
1433 {
1434 #ifdef WIN32
1435     ShowConsole( VLC_TRUE );
1436 #endif
1437
1438     utf8_fprintf( stdout, _("VLC version %s\n"), VLC_Version() );
1439     utf8_fprintf( stdout, _("Compiled by %s@%s.%s\n"),
1440              VLC_CompileBy(), VLC_CompileHost(), VLC_CompileDomain() );
1441     utf8_fprintf( stdout, _("Compiler: %s\n"), VLC_Compiler() );
1442 #ifndef HAVE_SHARED_LIBVLC
1443     if( strcmp( VLC_Changeset(), "exported" ) )
1444         utf8_fprintf( stdout, _("Based upon svn changeset [%s]\n"),
1445                  VLC_Changeset() );
1446 #endif
1447     utf8_fprintf( stdout, LICENSE_MSG );
1448
1449 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1450     PauseConsole();
1451 #endif
1452 }
1453
1454 /*****************************************************************************
1455  * ShowConsole: On Win32, create an output console for debug messages
1456  *****************************************************************************
1457  * This function is useful only on Win32.
1458  *****************************************************************************/
1459 #ifdef WIN32 /*  */
1460 static void ShowConsole( vlc_bool_t b_dofile )
1461 {
1462 #   ifndef UNDER_CE
1463     FILE *f_help;
1464
1465     if( getenv( "PWD" ) && getenv( "PS1" ) ) return; /* cygwin shell */
1466
1467     AllocConsole();
1468
1469     freopen( "CONOUT$", "w", stderr );
1470     freopen( "CONIN$", "r", stdin );
1471
1472     if( b_dofile && (f_help = fopen( "vlc-help.txt", "wt" )) )
1473     {
1474         fclose( f_help );
1475         freopen( "vlc-help.txt", "wt", stdout );
1476         utf8_fprintf( stderr, _("\nDumped content to vlc-help.txt file.\n") );
1477     }
1478
1479     else freopen( "CONOUT$", "w", stdout );
1480
1481 #   endif
1482 }
1483 #endif
1484
1485 /*****************************************************************************
1486  * PauseConsole: On Win32, wait for a key press before closing the console
1487  *****************************************************************************
1488  * This function is useful only on Win32.
1489  *****************************************************************************/
1490 #ifdef WIN32 /*  */
1491 static void PauseConsole( void )
1492 {
1493 #   ifndef UNDER_CE
1494
1495     if( getenv( "PWD" ) && getenv( "PS1" ) ) return; /* cygwin shell */
1496
1497     utf8_fprintf( stderr, _("\nPress the RETURN key to continue...\n") );
1498     getchar();
1499     fclose( stdout );
1500
1501 #   endif
1502 }
1503 #endif
1504
1505 /*****************************************************************************
1506  * ConsoleWidth: Return the console width in characters
1507  *****************************************************************************
1508  * We use the stty shell command to get the console width; if this fails or
1509  * if the width is less than 80, we default to 80.
1510  *****************************************************************************/
1511 static int ConsoleWidth( void )
1512 {
1513     int i_width = 80;
1514
1515 #ifndef WIN32
1516     char buf[20], *psz_parser;
1517     FILE *file;
1518     int i_ret;
1519
1520     file = popen( "stty size 2>/dev/null", "r" );
1521     if( file )
1522     {
1523         i_ret = fread( buf, 1, 20, file );
1524         if( i_ret > 0 )
1525         {
1526             buf[19] = '\0';
1527             psz_parser = strchr( buf, ' ' );
1528             if( psz_parser )
1529             {
1530                 i_ret = atoi( psz_parser + 1 );
1531                 if( i_ret >= 80 )
1532                 {
1533                     i_width = i_ret;
1534                 }
1535             }
1536         }
1537
1538         pclose( file );
1539     }
1540 #endif
1541
1542     return i_width;
1543 }
1544
1545 static int VerboseCallback( vlc_object_t *p_this, const char *psz_variable,
1546                      vlc_value_t old_val, vlc_value_t new_val, void *param)
1547 {
1548     libvlc_int_t *p_vlc = (libvlc_int_t *)p_this;
1549
1550     if( new_val.i_int >= -1 )
1551     {
1552         p_vlc->p_libvlc_global->i_verbose = __MIN( new_val.i_int, 2 );
1553     }
1554     return VLC_SUCCESS;
1555 }
1556
1557 /*****************************************************************************
1558  * InitDeviceValues: initialize device values
1559  *****************************************************************************
1560  * This function inits the dvd, vcd and cd-audio values
1561  *****************************************************************************/
1562 static void InitDeviceValues( libvlc_int_t *p_vlc )
1563 {
1564 #ifdef HAVE_HAL
1565     LibHalContext * ctx;
1566     int i, i_devices;
1567     char **devices;
1568     char *block_dev;
1569     dbus_bool_t b_dvd;
1570     DBusConnection *p_connection;
1571     DBusError       error;
1572
1573 #ifdef HAVE_HAL_1
1574     ctx =  libhal_ctx_new();
1575     if( !ctx ) return;
1576     dbus_error_init( &error );
1577     p_connection = dbus_bus_get ( DBUS_BUS_SYSTEM, &error );
1578     if( dbus_error_is_set( &error ) )
1579     {
1580         dbus_error_free( &error );
1581         return;
1582     }
1583     libhal_ctx_set_dbus_connection( ctx, p_connection );
1584     if( libhal_ctx_init( ctx, &error ) )
1585 #else
1586     if( ( ctx = hal_initialize( NULL, FALSE ) ) )
1587 #endif
1588     {
1589 #ifdef HAVE_HAL_1
1590         if( ( devices = libhal_get_all_devices( ctx, &i_devices, NULL ) ) )
1591 #else
1592         if( ( devices = hal_get_all_devices( ctx, &i_devices ) ) )
1593 #endif
1594         {
1595             for( i = 0; i < i_devices; i++ )
1596             {
1597 #ifdef HAVE_HAL_1
1598                 if( !libhal_device_property_exists( ctx, devices[i],
1599                                                 "storage.cdrom.dvd", NULL ) )
1600 #else
1601                 if( !hal_device_property_exists( ctx, devices[ i ],
1602                                                 "storage.cdrom.dvd" ) )
1603 #endif
1604                 {
1605                     continue;
1606                 }
1607 #ifdef HAVE_HAL_1
1608                 b_dvd = libhal_device_get_property_bool( ctx, devices[ i ],
1609                                                  "storage.cdrom.dvd", NULL  );
1610                 block_dev = libhal_device_get_property_string( ctx,
1611                                 devices[ i ], "block.device" , NULL );
1612 #else
1613                 b_dvd = hal_device_get_property_bool( ctx, devices[ i ],
1614                                                       "storage.cdrom.dvd" );
1615                 block_dev = hal_device_get_property_string( ctx, devices[ i ],
1616                                                             "block.device" );
1617 #endif
1618                 if( b_dvd )
1619                 {
1620                     config_PutPsz( p_vlc, "dvd", block_dev );
1621                 }
1622
1623                 config_PutPsz( p_vlc, "vcd", block_dev );
1624                 config_PutPsz( p_vlc, "cd-audio", block_dev );
1625 #ifdef HAVE_HAL_1
1626                 libhal_free_string( block_dev );
1627 #else
1628                 hal_free_string( block_dev );
1629 #endif
1630             }
1631 #ifdef HAVE_HAL_1
1632             libhal_free_string_array( devices );
1633 #else
1634             hal_free_string_array( devices );
1635 #endif
1636         }
1637
1638 #ifdef HAVE_HAL_1
1639         libhal_ctx_shutdown( ctx, NULL );
1640 #else
1641         hal_shutdown( ctx );
1642 #endif
1643     }
1644     else
1645     {
1646         msg_Warn( p_vlc, "Unable to get HAL device properties" );
1647     }
1648 #endif
1649 }