]> git.sesse.net Git - vlc/blob - src/libvlc-common.c
src/input/item.c: if we don't have an item name and item is a file, then only use...
[vlc] / src / libvlc-common.c
1 /*****************************************************************************
2  * libvlc-common.c: libvlc instances creation and deletion, interfaces handling
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 static volatile unsigned int i_instances = 0;
98
99 /*****************************************************************************
100  * Local prototypes
101  *****************************************************************************/
102 void LocaleInit( vlc_object_t * );
103 void LocaleDeinit( void );
104 static void SetLanguage   ( char const * );
105 static int  GetFilenames  ( libvlc_int_t *, int, char *[] );
106 static void Help          ( libvlc_int_t *, char const *psz_help_name );
107 static void Usage         ( libvlc_int_t *, char const *psz_module_name );
108 static void ListModules   ( libvlc_int_t * );
109 static void Version       ( void );
110
111 #ifdef WIN32
112 static void ShowConsole   ( vlc_bool_t );
113 static void PauseConsole  ( void );
114 #endif
115 static int  ConsoleWidth  ( void );
116
117 static int  VerboseCallback( vlc_object_t *, char const *,
118                              vlc_value_t, vlc_value_t, void * );
119
120 static void InitDeviceValues( libvlc_int_t * );
121
122 /*****************************************************************************
123  * vlc_current_object: return the current object.
124  *****************************************************************************
125  * If i_object is non-zero, return the corresponding object. Otherwise,
126  * return the statically allocated p_vlc object.
127  *****************************************************************************/
128 libvlc_int_t * vlc_current_object( int i_object )
129 {
130     if( i_object )
131     {
132          return vlc_object_get( p_libvlc_global, i_object );
133     }
134
135     return p_static_vlc;
136 }
137
138
139 /**
140  * Allocate a libvlc instance, initialize global data if needed
141  * It also initializes the threading system
142  */
143 libvlc_int_t * libvlc_InternalCreate( void )
144 {
145     int i_ret;
146     libvlc_int_t * p_libvlc = NULL;
147     vlc_value_t lockval;
148     char *psz_env;
149
150     /* &libvlc_global never changes,
151      * so we can safely call this multiple times. */
152     p_libvlc_global = &libvlc_global;
153
154     /* vlc_threads_init *must* be the first internal call! No other call is
155      * allowed before the thread system has been initialized. */
156     i_ret = vlc_threads_init( p_libvlc_global );
157     if( i_ret < 0 ) return NULL;
158
159     /* Now that the thread system is initialized, we don't have much, but
160      * at least we have var_Create */
161     var_Create( p_libvlc_global, "libvlc", VLC_VAR_MUTEX );
162     var_Get( p_libvlc_global, "libvlc", &lockval );
163     vlc_mutex_lock( lockval.p_address );
164
165     i_instances++;
166
167     if( !libvlc_global.b_ready )
168     {
169         /* Guess what CPU we have */
170         libvlc_global.i_cpu = CPUCapabilities();
171        /* The module bank will be initialized later */
172         libvlc_global.p_module_bank = NULL;
173
174         libvlc_global.b_ready = VLC_TRUE;
175     }
176     vlc_mutex_unlock( lockval.p_address );
177     var_Destroy( p_libvlc_global, "libvlc" );
178
179     /* Allocate a libvlc instance object */
180     p_libvlc = vlc_object_create( p_libvlc_global, VLC_OBJECT_LIBVLC );
181     if( p_libvlc == NULL ) { i_instances--; return NULL; }
182     p_libvlc->thread_id = 0;
183     p_libvlc->p_playlist = NULL;
184     p_libvlc->psz_object_name = "libvlc";
185
186     /* Initialize message queue */
187     msg_Create( p_libvlc );
188     /* Announce who we are - Do it only for first instance ? */
189     msg_Dbg( p_libvlc, COPYRIGHT_MESSAGE );
190     msg_Dbg( p_libvlc, "libvlc was configured with %s", CONFIGURE_LINE );
191
192     /* Find verbosity from VLC_VERBOSE environment variable */
193     psz_env = getenv( "VLC_VERBOSE" );
194     p_libvlc->i_verbose = psz_env ? atoi( psz_env ) : -1;
195
196 #if defined( HAVE_ISATTY ) && !defined( WIN32 )
197     p_libvlc->b_color = isatty( 2 ); /* 2 is for stderr */
198 #else
199     p_libvlc->b_color = VLC_FALSE;
200 #endif
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->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     p_libvlc->b_color = p_libvlc->b_color && config_GetInt( p_libvlc, "color" );
586
587     /*
588      * Output messages that may still be in the queue
589      */
590     msg_Flush( p_libvlc );
591
592     /* p_libvlc initialization. FIXME ? */
593
594     if( !config_GetInt( p_libvlc, "fpu" ) )
595         libvlc_global.i_cpu &= ~CPU_CAPABILITY_FPU;
596
597 #if defined( __i386__ ) || defined( __x86_64__ )
598     if( !config_GetInt( p_libvlc, "mmx" ) )
599         libvlc_global.i_cpu &= ~CPU_CAPABILITY_MMX;
600     if( !config_GetInt( p_libvlc, "3dn" ) )
601         libvlc_global.i_cpu &= ~CPU_CAPABILITY_3DNOW;
602     if( !config_GetInt( p_libvlc, "mmxext" ) )
603         libvlc_global.i_cpu &= ~CPU_CAPABILITY_MMXEXT;
604     if( !config_GetInt( p_libvlc, "sse" ) )
605         libvlc_global.i_cpu &= ~CPU_CAPABILITY_SSE;
606     if( !config_GetInt( p_libvlc, "sse2" ) )
607         libvlc_global.i_cpu &= ~CPU_CAPABILITY_SSE2;
608 #endif
609 #if defined( __powerpc__ ) || defined( __ppc__ ) || defined( __ppc64__ )
610     if( !config_GetInt( p_libvlc, "altivec" ) )
611         libvlc_global.i_cpu &= ~CPU_CAPABILITY_ALTIVEC;
612 #endif
613
614 #define PRINT_CAPABILITY( capability, string )                              \
615     if( libvlc_global.i_cpu & capability )                                         \
616     {                                                                       \
617         strncat( p_capabilities, string " ",                                \
618                  sizeof(p_capabilities) - strlen(p_capabilities) );         \
619         p_capabilities[sizeof(p_capabilities) - 1] = '\0';                  \
620     }
621
622     p_capabilities[0] = '\0';
623     PRINT_CAPABILITY( CPU_CAPABILITY_486, "486" );
624     PRINT_CAPABILITY( CPU_CAPABILITY_586, "586" );
625     PRINT_CAPABILITY( CPU_CAPABILITY_PPRO, "Pentium Pro" );
626     PRINT_CAPABILITY( CPU_CAPABILITY_MMX, "MMX" );
627     PRINT_CAPABILITY( CPU_CAPABILITY_3DNOW, "3DNow!" );
628     PRINT_CAPABILITY( CPU_CAPABILITY_MMXEXT, "MMXEXT" );
629     PRINT_CAPABILITY( CPU_CAPABILITY_SSE, "SSE" );
630     PRINT_CAPABILITY( CPU_CAPABILITY_SSE2, "SSE2" );
631     PRINT_CAPABILITY( CPU_CAPABILITY_ALTIVEC, "AltiVec" );
632     PRINT_CAPABILITY( CPU_CAPABILITY_FPU, "FPU" );
633     msg_Dbg( p_libvlc, "CPU has capabilities %s", p_capabilities );
634
635     /*
636      * Choose the best memcpy module
637      */
638     p_libvlc->p_memcpy_module = module_Need( p_libvlc, "memcpy", "$memcpy", 0 );
639
640     if( p_libvlc->pf_memcpy == NULL )
641     {
642         p_libvlc->pf_memcpy = memcpy;
643     }
644
645     if( p_libvlc->pf_memset == NULL )
646     {
647         p_libvlc->pf_memset = memset;
648     }
649
650     p_libvlc->b_stats = config_GetInt( p_libvlc, "stats" );
651     p_libvlc->i_timers = 0;
652     p_libvlc->pp_timers = NULL;
653     vlc_mutex_init( p_libvlc, &p_libvlc->timer_lock );
654
655     /*
656      * Initialize hotkey handling
657      */
658     var_Create( p_libvlc, "key-pressed", VLC_VAR_INTEGER );
659     p_libvlc->p_hotkeys = malloc( sizeof(p_hotkeys) );
660     /* Do a copy (we don't need to modify the strings) */
661     memcpy( p_libvlc->p_hotkeys, p_hotkeys, sizeof(p_hotkeys) );
662
663     /* Initialize playlist and get commandline files */
664     playlist_ThreadCreate( p_libvlc );
665     if( !p_libvlc->p_playlist )
666     {
667         msg_Err( p_libvlc, "playlist initialization failed" );
668         if( p_libvlc->p_memcpy_module != NULL )
669         {
670             module_Unneed( p_libvlc, p_libvlc->p_memcpy_module );
671         }
672         module_EndBank( p_libvlc );
673         return VLC_EGENERIC;
674     }
675     p_playlist = p_libvlc->p_playlist;
676
677     psz_modules = config_GetPsz( p_playlist, "services-discovery" );
678     if( psz_modules && *psz_modules )
679     {
680         /* Add service discovery modules */
681         playlist_AddSDModules( p_playlist, psz_modules );
682     }
683     if( psz_modules ) free( psz_modules );
684
685     /*
686      * Load background interfaces
687      */
688     psz_modules = config_GetPsz( p_libvlc, "extraintf" );
689     psz_control = config_GetPsz( p_libvlc, "control" );
690
691     if( psz_modules && *psz_modules && psz_control && *psz_control )
692     {
693         psz_modules = (char *)realloc( psz_modules, strlen( psz_modules ) +
694                                                     strlen( psz_control ) + 1 );
695         sprintf( psz_modules, "%s:%s", psz_modules, psz_control );
696     }
697     else if( psz_control && *psz_control )
698     {
699         if( psz_modules ) free( psz_modules );
700         psz_modules = strdup( psz_control );
701     }
702
703     psz_parser = psz_modules;
704     while ( psz_parser && *psz_parser )
705     {
706         char *psz_module, *psz_temp;
707         psz_module = psz_parser;
708         psz_parser = strchr( psz_module, ':' );
709         if ( psz_parser )
710         {
711             *psz_parser = '\0';
712             psz_parser++;
713         }
714         psz_temp = (char *)malloc( strlen(psz_module) + sizeof(",none") );
715         if( psz_temp )
716         {
717             sprintf( psz_temp, "%s,none", psz_module );
718             VLC_AddIntf( 0, psz_temp, VLC_FALSE, VLC_FALSE );
719             free( psz_temp );
720         }
721     }
722     if ( psz_modules )
723     {
724         free( psz_modules );
725     }
726
727     /*
728      * Always load the hotkeys interface if it exists
729      */
730     VLC_AddIntf( 0, "hotkeys,none", VLC_FALSE, VLC_FALSE );
731
732     /*
733      * If needed, load the Xscreensaver interface
734      * Currently, only for X
735      */
736 #ifdef HAVE_X11_XLIB_H
737     if( config_GetInt( p_libvlc, "disable-screensaver" ) == 1 )
738     {
739         VLC_AddIntf( 0, "screensaver,none", VLC_FALSE, VLC_FALSE );
740     }
741 #endif
742
743     if( config_GetInt( p_libvlc, "file-logging" ) == 1 )
744     {
745         VLC_AddIntf( 0, "logger,none", VLC_FALSE, VLC_FALSE );
746     }
747 #ifdef HAVE_SYSLOG_H
748     if( config_GetInt( p_libvlc, "syslog" ) == 1 )
749     {
750         char *psz_logmode = "logmode=syslog";
751         libvlc_InternalAddIntf( 0, "logger,none", VLC_FALSE, VLC_FALSE,
752                                 1, &psz_logmode );
753     }
754 #endif
755
756     if( config_GetInt( p_libvlc, "show-intf" ) == 1 )
757     {
758         VLC_AddIntf( 0, "showintf,none", VLC_FALSE, VLC_FALSE );
759     }
760
761     if( config_GetInt( p_libvlc, "network-synchronisation") == 1 )
762     {
763         VLC_AddIntf( 0, "netsync,none", VLC_FALSE, VLC_FALSE );
764     }
765
766     /*
767      * FIXME: kludge to use a p_libvlc-local variable for the Mozilla plugin
768      */
769     var_Create( p_libvlc, "drawable", VLC_VAR_INTEGER );
770     var_Create( p_libvlc, "drawable-view-top", VLC_VAR_INTEGER );
771     var_Create( p_libvlc, "drawable-view-left", VLC_VAR_INTEGER );
772     var_Create( p_libvlc, "drawable-view-bottom", VLC_VAR_INTEGER );
773     var_Create( p_libvlc, "drawable-view-right", VLC_VAR_INTEGER );
774     var_Create( p_libvlc, "drawable-clip-top", VLC_VAR_INTEGER );
775     var_Create( p_libvlc, "drawable-clip-left", VLC_VAR_INTEGER );
776     var_Create( p_libvlc, "drawable-clip-bottom", VLC_VAR_INTEGER );
777     var_Create( p_libvlc, "drawable-clip-right", VLC_VAR_INTEGER );
778
779     /* Create volume callback system. */
780     var_Create( p_libvlc, "volume-change", VLC_VAR_BOOL );
781
782     /*
783      * Get input filenames given as commandline arguments
784      */
785     GetFilenames( p_libvlc, i_argc, ppsz_argv );
786
787     /*
788      * Get --open argument
789      */
790     var_Create( p_libvlc, "open", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
791     var_Get( p_libvlc, "open", &val );
792     if ( val.psz_string != NULL && *val.psz_string )
793     {
794         VLC_AddTarget( p_libvlc->i_object_id, val.psz_string, NULL, 0,
795                        PLAYLIST_INSERT, 0 );
796     }
797     if ( val.psz_string != NULL ) free( val.psz_string );
798
799     return VLC_SUCCESS;
800 }
801
802 /**
803  * Cleanup a libvlc instance. The instance is not completely deallocated
804  * \param p_libvlc the instance to clean
805  */
806 int libvlc_InternalCleanup( libvlc_int_t *p_libvlc )
807 {
808     intf_thread_t      * p_intf;
809     vout_thread_t      * p_vout;
810     aout_instance_t    * p_aout;
811     announce_handler_t * p_announce;
812
813     /* Ask the interfaces to stop and destroy them */
814     msg_Dbg( p_libvlc, "removing all interfaces" );
815     while( (p_intf = vlc_object_find( p_libvlc, VLC_OBJECT_INTF, FIND_CHILD )) )
816     {
817         intf_StopThread( p_intf );
818         vlc_object_detach( p_intf );
819         vlc_object_release( p_intf );
820         intf_Destroy( p_intf );
821     }
822
823     /* Free playlist */
824     msg_Dbg( p_libvlc, "removing playlist" );
825     playlist_ThreadDestroy( p_libvlc->p_playlist );
826
827     /* Free video outputs */
828     msg_Dbg( p_libvlc, "removing all video outputs" );
829     while( (p_vout = vlc_object_find( p_libvlc, VLC_OBJECT_VOUT, FIND_CHILD )) )
830     {
831         vlc_object_detach( p_vout );
832         vlc_object_release( p_vout );
833         vout_Destroy( p_vout );
834     }
835
836     /* Free audio outputs */
837     msg_Dbg( p_libvlc, "removing all audio outputs" );
838     while( (p_aout = vlc_object_find( p_libvlc, VLC_OBJECT_AOUT, FIND_CHILD )) )
839     {
840         vlc_object_detach( (vlc_object_t *)p_aout );
841         vlc_object_release( (vlc_object_t *)p_aout );
842         aout_Delete( p_aout );
843     }
844
845     stats_TimersDumpAll( p_libvlc );
846     stats_TimersClean( p_libvlc );
847
848     /* Free announce handler(s?) */
849     while( (p_announce = vlc_object_find( p_libvlc, VLC_OBJECT_ANNOUNCE,
850                                                  FIND_CHILD ) ) )
851     {
852         msg_Dbg( p_libvlc, "removing announce handler" );
853         vlc_object_detach( p_announce );
854         vlc_object_release( p_announce );
855         announce_HandlerDestroy( p_announce );
856     }
857     return VLC_SUCCESS;
858 }
859
860 /**
861  * Destroy everything.
862  * This function requests the running threads to finish, waits for their
863  * termination, and destroys their structure.
864  * It stops the thread systems: no instance can run after this has run
865  * \param p_libvlc the instance to destroy
866  * \param b_release whether we should do a release on the instance
867  */
868 int libvlc_InternalDestroy( libvlc_int_t *p_libvlc, vlc_bool_t b_release )
869 {
870     vlc_value_t lockval;
871
872     if( p_libvlc->p_memcpy_module )
873     {
874         module_Unneed( p_libvlc, p_libvlc->p_memcpy_module );
875         p_libvlc->p_memcpy_module = NULL;
876     }
877
878     /* Free module bank. It is refcounted, so we call this each time  */
879     module_EndBank( p_libvlc );
880
881     FREENULL( p_libvlc->psz_homedir );
882     FREENULL( p_libvlc->psz_userdir );
883     FREENULL( p_libvlc->psz_configfile );
884     FREENULL( p_libvlc->p_hotkeys );
885
886     var_Create( p_libvlc_global, "libvlc", VLC_VAR_MUTEX );
887     var_Get( p_libvlc_global, "libvlc", &lockval );
888     vlc_mutex_lock( lockval.p_address );
889     i_instances--;
890
891     if( i_instances == 0 )
892     {
893         /* System specific cleaning code */
894         system_End( p_libvlc );
895
896        /* Destroy global iconv */
897         LocaleDeinit();
898     }
899     vlc_mutex_unlock( lockval.p_address );
900     var_Destroy( p_libvlc_global, "libvlc" );
901
902     msg_Flush( p_libvlc );
903     msg_Destroy( p_libvlc );
904
905     /* Destroy mutexes */
906     vlc_mutex_destroy( &p_libvlc->config_lock );
907
908     vlc_object_detach( p_libvlc );
909     if( b_release ) vlc_object_release( p_libvlc );
910     vlc_object_destroy( p_libvlc );
911
912     /* Stop thread system: last one out please shut the door!
913      * The number of initializations of the thread system is counted, we 
914      * can call this each time */
915     vlc_threads_end( p_libvlc_global );
916
917     return VLC_SUCCESS;
918 }
919
920 /**
921  * Add an interface plugin and run it
922  */
923 int libvlc_InternalAddIntf( libvlc_int_t *p_libvlc,
924                             char const *psz_module,
925                             vlc_bool_t b_block, vlc_bool_t b_play,
926                             int i_options, char **ppsz_options )
927 {
928     int i_err;
929     intf_thread_t *p_intf;
930
931 #ifndef WIN32
932     if( p_libvlc->p_libvlc_global->b_daemon && b_block && !psz_module )
933     {
934         /* Daemon mode hack.
935          * We prefer the dummy interface if none is specified. */
936         char *psz_interface = config_GetPsz( p_libvlc, "intf" );
937         if( !psz_interface || !*psz_interface ) psz_module = "dummy";
938         if( psz_interface ) free( psz_interface );
939     }
940 #endif
941
942     /* Try to create the interface */
943     p_intf = intf_Create( p_libvlc, psz_module ? psz_module : "$intf",
944                           i_options, ppsz_options );
945
946     if( p_intf == NULL )
947     {
948         msg_Err( p_libvlc, "interface \"%s\" initialization failed",
949                  psz_module );
950         return VLC_EGENERIC;
951     }
952
953     /* Interface doesn't handle play on start so do it ourselves */
954     if( !p_intf->b_play && b_play )
955         playlist_Play( p_libvlc->p_playlist );
956
957     /* Try to run the interface */
958     p_intf->b_play = b_play;
959     p_intf->b_block = b_block;
960     i_err = intf_RunThread( p_intf );
961     if( i_err )
962     {
963         vlc_object_detach( p_intf );
964         intf_Destroy( p_intf );
965         return i_err;
966     }
967     return VLC_SUCCESS;
968 };
969
970
971 /*****************************************************************************
972  * SetLanguage: set the interface language.
973  *****************************************************************************
974  * We set the LC_MESSAGES locale category for interface messages and buttons,
975  * as well as the LC_CTYPE category for string sorting and possible wide
976  * character support.
977  *****************************************************************************/
978 static void SetLanguage ( char const *psz_lang )
979 {
980 #if defined( ENABLE_NLS ) \
981      && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
982
983     char *          psz_path;
984 #if defined( __APPLE__ ) || defined ( WIN32 ) || defined( SYS_BEOS )
985     char            psz_tmp[1024];
986 #endif
987
988     if( psz_lang && !*psz_lang )
989     {
990 #   if defined( HAVE_LC_MESSAGES )
991         setlocale( LC_MESSAGES, psz_lang );
992 #   endif
993         setlocale( LC_CTYPE, psz_lang );
994     }
995     else if( psz_lang )
996     {
997 #ifdef __APPLE__
998         /* I need that under Darwin, please check it doesn't disturb
999          * other platforms. --Meuuh */
1000         setenv( "LANG", psz_lang, 1 );
1001
1002 #elif defined( SYS_BEOS ) || defined( WIN32 )
1003         /* We set LC_ALL manually because it is the only way to set
1004          * the language at runtime under eg. Windows. Beware that this
1005          * makes the environment unconsistent when libvlc is unloaded and
1006          * should probably be moved to a safer place like vlc.c. */
1007         static char psz_lcall[20];
1008         snprintf( psz_lcall, 19, "LC_ALL=%s", psz_lang );
1009         psz_lcall[19] = '\0';
1010         putenv( psz_lcall );
1011 #endif
1012
1013         setlocale( LC_ALL, psz_lang );
1014     }
1015
1016     /* Specify where to find the locales for current domain */
1017 #if !defined( __APPLE__ ) && !defined( WIN32 ) && !defined( SYS_BEOS )
1018     psz_path = LOCALEDIR;
1019 #else
1020     snprintf( psz_tmp, sizeof(psz_tmp), "%s/%s", libvlc_global.psz_vlcpath,
1021               "locale" );
1022     psz_path = psz_tmp;
1023 #endif
1024     if( !bindtextdomain( PACKAGE_NAME, psz_path ) )
1025     {
1026         fprintf( stderr, "warning: couldn't bind domain %s in directory %s\n",
1027                  PACKAGE_NAME, psz_path );
1028     }
1029
1030     /* Set the default domain */
1031     bind_textdomain_codeset( PACKAGE_NAME, "UTF-8" );
1032 #endif
1033 }
1034
1035 /*****************************************************************************
1036  * GetFilenames: parse command line options which are not flags
1037  *****************************************************************************
1038  * Parse command line for input files as well as their associated options.
1039  * An option always follows its associated input and begins with a ":".
1040  *****************************************************************************/
1041 static int GetFilenames( libvlc_int_t *p_vlc, int i_argc, char *ppsz_argv[] )
1042 {
1043     int i_opt, i_options;
1044
1045     /* We assume that the remaining parameters are filenames
1046      * and their input options */
1047     for( i_opt = i_argc - 1; i_opt >= optind; i_opt-- )
1048     {
1049         const char *psz_target;
1050         i_options = 0;
1051
1052         /* Count the input options */
1053         while( *ppsz_argv[ i_opt ] == ':' && i_opt > optind )
1054         {
1055             i_options++;
1056             i_opt--;
1057         }
1058
1059         /* TODO: write an internal function of this one, to avoid
1060          *       unnecessary lookups. */
1061         /* FIXME: should we convert options to UTF-8 as well ?? */
1062         psz_target = FromLocale( ppsz_argv[ i_opt ] );
1063         VLC_AddTarget( p_vlc->i_object_id, psz_target,
1064                        (char const **)( i_options ? &ppsz_argv[i_opt + 1] :
1065                                         NULL ), i_options,
1066                        PLAYLIST_INSERT, 0 );
1067         LocaleFree( psz_target );
1068     }
1069
1070     return VLC_SUCCESS;
1071 }
1072
1073 /*****************************************************************************
1074  * Help: print program help
1075  *****************************************************************************
1076  * Print a short inline help. Message interface is initialized at this stage.
1077  *****************************************************************************/
1078 static void Help( libvlc_int_t *p_this, char const *psz_help_name )
1079 {
1080 #ifdef WIN32
1081     ShowConsole( VLC_TRUE );
1082 #endif
1083
1084     if( psz_help_name && !strcmp( psz_help_name, "help" ) )
1085     {
1086         utf8_fprintf( stdout, VLC_USAGE, p_this->psz_object_name );
1087         Usage( p_this, "help" );
1088         Usage( p_this, "main" );
1089     }
1090     else if( psz_help_name && !strcmp( psz_help_name, "longhelp" ) )
1091     {
1092         utf8_fprintf( stdout, VLC_USAGE, p_this->psz_object_name );
1093         Usage( p_this, NULL );
1094     }
1095     else if( psz_help_name )
1096     {
1097         Usage( p_this, psz_help_name );
1098     }
1099
1100 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1101     PauseConsole();
1102 #endif
1103 }
1104
1105 /*****************************************************************************
1106  * Usage: print module usage
1107  *****************************************************************************
1108  * Print a short inline help. Message interface is initialized at this stage.
1109  *****************************************************************************/
1110 static void Usage( libvlc_int_t *p_this, char const *psz_module_name )
1111 {
1112 #define FORMAT_STRING "  %s --%s%s%s%s%s%s%s "
1113     /* short option ------'    |     | | | |  | |
1114      * option name ------------'     | | | |  | |
1115      * <bra -------------------------' | | |  | |
1116      * option type or "" --------------' | |  | |
1117      * ket> -----------------------------' |  | |
1118      * padding spaces ---------------------'  | |
1119      * comment -------------------------------' |
1120      * comment suffix --------------------------'
1121      *
1122      * The purpose of having bra and ket is that we might i18n them as well.
1123      */
1124 #define LINE_START 8
1125 #define PADDING_SPACES 25
1126     vlc_list_t *p_list;
1127     module_t *p_parser;
1128     module_config_t *p_item;
1129     char psz_spaces_text[PADDING_SPACES+LINE_START+1];
1130     char psz_spaces_longtext[LINE_START+3];
1131     char psz_format[sizeof(FORMAT_STRING)];
1132     char psz_buffer[10000];
1133     char psz_short[4];
1134     int i_index;
1135     int i_width = ConsoleWidth() - (PADDING_SPACES+LINE_START+1);
1136     vlc_bool_t b_advanced = config_GetInt( p_this, "advanced" );
1137     vlc_bool_t b_description;
1138
1139     memset( psz_spaces_text, ' ', PADDING_SPACES+LINE_START );
1140     psz_spaces_text[PADDING_SPACES+LINE_START] = '\0';
1141     memset( psz_spaces_longtext, ' ', LINE_START+2 );
1142     psz_spaces_longtext[LINE_START+2] = '\0';
1143
1144     strcpy( psz_format, FORMAT_STRING );
1145
1146     /* List all modules */
1147     p_list = vlc_list_find( p_this, VLC_OBJECT_MODULE, FIND_ANYWHERE );
1148
1149     /* Enumerate the config for each module */
1150     for( i_index = 0; i_index < p_list->i_count; i_index++ )
1151     {
1152         vlc_bool_t b_help_module;
1153
1154         p_parser = (module_t *)p_list->p_values[i_index].p_object ;
1155
1156         if( psz_module_name && strcmp( psz_module_name,
1157                                        p_parser->psz_object_name ) )
1158         {
1159             continue;
1160         }
1161
1162         /* Ignore modules without config options */
1163         if( !p_parser->i_config_items )
1164         {
1165             continue;
1166         }
1167
1168         /* Ignore modules with only advanced config options if requested */
1169         if( !b_advanced )
1170         {
1171             for( p_item = p_parser->p_config;
1172                  p_item->i_type != CONFIG_HINT_END;
1173                  p_item++ )
1174             {
1175                 if( (p_item->i_type & CONFIG_ITEM) &&
1176                     !p_item->b_advanced ) break;
1177             }
1178             if( p_item->i_type == CONFIG_HINT_END ) continue;
1179         }
1180
1181         /* Print name of module */
1182         if( strcmp( "main", p_parser->psz_object_name ) )
1183         utf8_fprintf( stdout, "\n %s\n", p_parser->psz_longname );
1184
1185         b_help_module = !strcmp( "help", p_parser->psz_object_name );
1186
1187         /* Print module options */
1188         for( p_item = p_parser->p_config;
1189              p_item->i_type != CONFIG_HINT_END;
1190              p_item++ )
1191         {
1192             char *psz_text, *psz_spaces = psz_spaces_text;
1193             char *psz_bra = NULL, *psz_type = NULL, *psz_ket = NULL;
1194             char *psz_suf = "", *psz_prefix = NULL;
1195             signed int i;
1196
1197             /* Skip deprecated options */
1198             if( p_item->psz_current )
1199             {
1200                 continue;
1201             }
1202             /* Skip advanced options if requested */
1203             if( p_item->b_advanced && !b_advanced )
1204             {
1205                 continue;
1206             }
1207
1208             switch( p_item->i_type )
1209             {
1210             case CONFIG_HINT_CATEGORY:
1211             case CONFIG_HINT_USAGE:
1212                 if( !strcmp( "main", p_parser->psz_object_name ) )
1213                 utf8_fprintf( stdout, "\n %s\n", p_item->psz_text );
1214                 break;
1215
1216             case CONFIG_ITEM_STRING:
1217             case CONFIG_ITEM_FILE:
1218             case CONFIG_ITEM_DIRECTORY:
1219             case CONFIG_ITEM_MODULE: /* We could also have "=<" here */
1220             case CONFIG_ITEM_MODULE_CAT:
1221             case CONFIG_ITEM_MODULE_LIST:
1222             case CONFIG_ITEM_MODULE_LIST_CAT:
1223                 psz_bra = " <"; psz_type = _("string"); psz_ket = ">";
1224
1225                 if( p_item->ppsz_list )
1226                 {
1227                     psz_bra = " {";
1228                     psz_type = psz_buffer;
1229                     psz_type[0] = '\0';
1230                     for( i = 0; p_item->ppsz_list[i]; i++ )
1231                     {
1232                         if( i ) strcat( psz_type, "," );
1233                         strcat( psz_type, p_item->ppsz_list[i] );
1234                     }
1235                     psz_ket = "}";
1236                 }
1237                 break;
1238             case CONFIG_ITEM_INTEGER:
1239             case CONFIG_ITEM_KEY: /* FIXME: do something a bit more clever */
1240                 psz_bra = " <"; psz_type = _("integer"); psz_ket = ">";
1241
1242                 if( p_item->i_list )
1243                 {
1244                     psz_bra = " {";
1245                     psz_type = psz_buffer;
1246                     psz_type[0] = '\0';
1247                     for( i = 0; p_item->ppsz_list_text[i]; i++ )
1248                     {
1249                         if( i ) strcat( psz_type, ", " );
1250                         sprintf( psz_type + strlen(psz_type), "%i (%s)",
1251                                  p_item->pi_list[i],
1252                                  p_item->ppsz_list_text[i] );
1253                     }
1254                     psz_ket = "}";
1255                 }
1256                 break;
1257             case CONFIG_ITEM_FLOAT:
1258                 psz_bra = " <"; psz_type = _("float"); psz_ket = ">";
1259                 break;
1260             case CONFIG_ITEM_BOOL:
1261                 psz_bra = ""; psz_type = ""; psz_ket = "";
1262                 if( !b_help_module )
1263                 {
1264                     psz_suf = p_item->i_value ? _(" (default enabled)") :
1265                                                 _(" (default disabled)");
1266                 }
1267                 break;
1268             }
1269
1270             if( !psz_type )
1271             {
1272                 continue;
1273             }
1274
1275             /* Add short option if any */
1276             if( p_item->i_short )
1277             {
1278                 sprintf( psz_short, "-%c,", p_item->i_short );
1279             }
1280             else
1281             {
1282                 strcpy( psz_short, "   " );
1283             }
1284
1285             i = PADDING_SPACES - strlen( p_item->psz_name )
1286                  - strlen( psz_bra ) - strlen( psz_type )
1287                  - strlen( psz_ket ) - 1;
1288
1289             if( p_item->i_type == CONFIG_ITEM_BOOL && !b_help_module )
1290             {
1291                 psz_prefix =  ", --no-";
1292                 i -= strlen( p_item->psz_name ) + strlen( psz_prefix );
1293             }
1294
1295             if( i < 0 )
1296             {
1297                 psz_spaces[0] = '\n';
1298                 i = 0;
1299             }
1300             else
1301             {
1302                 psz_spaces[i] = '\0';
1303             }
1304
1305             if( p_item->i_type == CONFIG_ITEM_BOOL && !b_help_module )
1306             {
1307                 utf8_fprintf( stdout, psz_format, psz_short, p_item->psz_name,
1308                          psz_prefix, p_item->psz_name, psz_bra, psz_type,
1309                          psz_ket, psz_spaces );
1310             }
1311             else
1312             {
1313                 utf8_fprintf( stdout, psz_format, psz_short, p_item->psz_name,
1314                          "", "", psz_bra, psz_type, psz_ket, psz_spaces );
1315             }
1316
1317             psz_spaces[i] = ' ';
1318
1319             /* We wrap the rest of the output */
1320             sprintf( psz_buffer, "%s%s", p_item->psz_text, psz_suf );
1321             b_description = config_GetInt( p_this, "help-verbose" );
1322
1323  description:
1324             psz_text = psz_buffer;
1325             while( *psz_text )
1326             {
1327                 char *psz_parser, *psz_word;
1328                 size_t i_end = strlen( psz_text );
1329
1330                 /* If the remaining text fits in a line, print it. */
1331                 if( i_end <= (size_t)i_width )
1332                 {
1333                     utf8_fprintf( stdout, "%s\n", psz_text );
1334                     break;
1335                 }
1336
1337                 /* Otherwise, eat as many words as possible */
1338                 psz_parser = psz_text;
1339                 do
1340                 {
1341                     psz_word = psz_parser;
1342                     psz_parser = strchr( psz_word, ' ' );
1343                     /* If no space was found, we reached the end of the text
1344                      * block; otherwise, we skip the space we just found. */
1345                     psz_parser = psz_parser ? psz_parser + 1
1346                                             : psz_text + i_end;
1347
1348                 } while( psz_parser - psz_text <= i_width );
1349
1350                 /* We cut a word in one of these cases:
1351                  *  - it's the only word in the line and it's too long.
1352                  *  - we used less than 80% of the width and the word we are
1353                  *    going to wrap is longer than 40% of the width, and even
1354                  *    if the word would have fit in the next line. */
1355                 if( psz_word == psz_text
1356                      || ( psz_word - psz_text < 80 * i_width / 100
1357                            && psz_parser - psz_word > 40 * i_width / 100 ) )
1358                 {
1359                     char c = psz_text[i_width];
1360                     psz_text[i_width] = '\0';
1361                     utf8_fprintf( stdout, "%s\n%s", psz_text, psz_spaces );
1362                     psz_text += i_width;
1363                     psz_text[0] = c;
1364                 }
1365                 else
1366                 {
1367                     psz_word[-1] = '\0';
1368                     utf8_fprintf( stdout, "%s\n%s", psz_text, psz_spaces );
1369                     psz_text = psz_word;
1370                 }
1371             }
1372
1373             if( b_description && p_item->psz_longtext )
1374             {
1375                 sprintf( psz_buffer, "%s%s", p_item->psz_longtext, psz_suf );
1376                 b_description = VLC_FALSE;
1377                 psz_spaces = psz_spaces_longtext;
1378                 utf8_fprintf( stdout, "%s", psz_spaces );
1379                 goto description;
1380             }
1381         }
1382     }
1383
1384     /* Release the module list */
1385     vlc_list_release( p_list );
1386 }
1387
1388 /*****************************************************************************
1389  * ListModules: list the available modules with their description
1390  *****************************************************************************
1391  * Print a list of all available modules (builtins and plugins) and a short
1392  * description for each one.
1393  *****************************************************************************/
1394 static void ListModules( libvlc_int_t *p_this )
1395 {
1396     vlc_list_t *p_list;
1397     module_t *p_parser;
1398     char psz_spaces[22];
1399     int i_index;
1400
1401     memset( psz_spaces, ' ', 22 );
1402
1403 #ifdef WIN32
1404     ShowConsole( VLC_TRUE );
1405 #endif
1406
1407     /* List all modules */
1408     p_list = vlc_list_find( p_this, VLC_OBJECT_MODULE, FIND_ANYWHERE );
1409
1410     /* Enumerate each module */
1411     for( i_index = 0; i_index < p_list->i_count; i_index++ )
1412     {
1413         int i;
1414
1415         p_parser = (module_t *)p_list->p_values[i_index].p_object ;
1416
1417         /* Nasty hack, but right now I'm too tired to think about a nice
1418          * solution */
1419         i = 22 - strlen( p_parser->psz_object_name ) - 1;
1420         if( i < 0 ) i = 0;
1421         psz_spaces[i] = 0;
1422
1423         utf8_fprintf( stdout, "  %s%s %s\n", p_parser->psz_object_name,
1424                          psz_spaces, p_parser->psz_longname );
1425
1426         psz_spaces[i] = ' ';
1427     }
1428
1429     vlc_list_release( p_list );
1430
1431 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1432     PauseConsole();
1433 #endif
1434 }
1435
1436 /*****************************************************************************
1437  * Version: print complete program version
1438  *****************************************************************************
1439  * Print complete program version and build number.
1440  *****************************************************************************/
1441 static void Version( void )
1442 {
1443 #ifdef WIN32
1444     ShowConsole( VLC_TRUE );
1445 #endif
1446
1447     utf8_fprintf( stdout, _("VLC version %s\n"), VLC_Version() );
1448     utf8_fprintf( stdout, _("Compiled by %s@%s.%s\n"),
1449              VLC_CompileBy(), VLC_CompileHost(), VLC_CompileDomain() );
1450     utf8_fprintf( stdout, _("Compiler: %s\n"), VLC_Compiler() );
1451 #ifndef HAVE_SHARED_LIBVLC
1452     if( strcmp( VLC_Changeset(), "exported" ) )
1453         utf8_fprintf( stdout, _("Based upon svn changeset [%s]\n"),
1454                  VLC_Changeset() );
1455 #endif
1456     utf8_fprintf( stdout, LICENSE_MSG );
1457
1458 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1459     PauseConsole();
1460 #endif
1461 }
1462
1463 /*****************************************************************************
1464  * ShowConsole: On Win32, create an output console for debug messages
1465  *****************************************************************************
1466  * This function is useful only on Win32.
1467  *****************************************************************************/
1468 #ifdef WIN32 /*  */
1469 static void ShowConsole( vlc_bool_t b_dofile )
1470 {
1471 #   ifndef UNDER_CE
1472     FILE *f_help;
1473
1474     if( getenv( "PWD" ) && getenv( "PS1" ) ) return; /* cygwin shell */
1475
1476     AllocConsole();
1477
1478     freopen( "CONOUT$", "w", stderr );
1479     freopen( "CONIN$", "r", stdin );
1480
1481     if( b_dofile && (f_help = fopen( "vlc-help.txt", "wt" )) )
1482     {
1483         fclose( f_help );
1484         freopen( "vlc-help.txt", "wt", stdout );
1485         utf8_fprintf( stderr, _("\nDumped content to vlc-help.txt file.\n") );
1486     }
1487
1488     else freopen( "CONOUT$", "w", stdout );
1489
1490 #   endif
1491 }
1492 #endif
1493
1494 /*****************************************************************************
1495  * PauseConsole: On Win32, wait for a key press before closing the console
1496  *****************************************************************************
1497  * This function is useful only on Win32.
1498  *****************************************************************************/
1499 #ifdef WIN32 /*  */
1500 static void PauseConsole( void )
1501 {
1502 #   ifndef UNDER_CE
1503
1504     if( getenv( "PWD" ) && getenv( "PS1" ) ) return; /* cygwin shell */
1505
1506     utf8_fprintf( stderr, _("\nPress the RETURN key to continue...\n") );
1507     getchar();
1508     fclose( stdout );
1509
1510 #   endif
1511 }
1512 #endif
1513
1514 /*****************************************************************************
1515  * ConsoleWidth: Return the console width in characters
1516  *****************************************************************************
1517  * We use the stty shell command to get the console width; if this fails or
1518  * if the width is less than 80, we default to 80.
1519  *****************************************************************************/
1520 static int ConsoleWidth( void )
1521 {
1522     int i_width = 80;
1523
1524 #ifndef WIN32
1525     char buf[20], *psz_parser;
1526     FILE *file;
1527     int i_ret;
1528
1529     file = popen( "stty size 2>/dev/null", "r" );
1530     if( file )
1531     {
1532         i_ret = fread( buf, 1, 20, file );
1533         if( i_ret > 0 )
1534         {
1535             buf[19] = '\0';
1536             psz_parser = strchr( buf, ' ' );
1537             if( psz_parser )
1538             {
1539                 i_ret = atoi( psz_parser + 1 );
1540                 if( i_ret >= 80 )
1541                 {
1542                     i_width = i_ret;
1543                 }
1544             }
1545         }
1546
1547         pclose( file );
1548     }
1549 #endif
1550
1551     return i_width;
1552 }
1553
1554 static int VerboseCallback( vlc_object_t *p_this, const char *psz_variable,
1555                      vlc_value_t old_val, vlc_value_t new_val, void *param)
1556 {
1557     libvlc_int_t *p_libvlc = (libvlc_int_t *)p_this;
1558
1559     if( new_val.i_int >= -1 )
1560     {
1561         p_libvlc->i_verbose = __MIN( new_val.i_int, 2 );
1562     }
1563     return VLC_SUCCESS;
1564 }
1565
1566 /*****************************************************************************
1567  * InitDeviceValues: initialize device values
1568  *****************************************************************************
1569  * This function inits the dvd, vcd and cd-audio values
1570  *****************************************************************************/
1571 static void InitDeviceValues( libvlc_int_t *p_vlc )
1572 {
1573 #ifdef HAVE_HAL
1574     LibHalContext * ctx;
1575     int i, i_devices;
1576     char **devices;
1577     char *block_dev;
1578     dbus_bool_t b_dvd;
1579     DBusConnection *p_connection;
1580     DBusError       error;
1581
1582 #ifdef HAVE_HAL_1
1583     ctx =  libhal_ctx_new();
1584     if( !ctx ) return;
1585     dbus_error_init( &error );
1586     p_connection = dbus_bus_get ( DBUS_BUS_SYSTEM, &error );
1587     if( dbus_error_is_set( &error ) )
1588     {
1589         dbus_error_free( &error );
1590         return;
1591     }
1592     libhal_ctx_set_dbus_connection( ctx, p_connection );
1593     if( libhal_ctx_init( ctx, &error ) )
1594 #else
1595     if( ( ctx = hal_initialize( NULL, FALSE ) ) )
1596 #endif
1597     {
1598 #ifdef HAVE_HAL_1
1599         if( ( devices = libhal_get_all_devices( ctx, &i_devices, NULL ) ) )
1600 #else
1601         if( ( devices = hal_get_all_devices( ctx, &i_devices ) ) )
1602 #endif
1603         {
1604             for( i = 0; i < i_devices; i++ )
1605             {
1606 #ifdef HAVE_HAL_1
1607                 if( !libhal_device_property_exists( ctx, devices[i],
1608                                                 "storage.cdrom.dvd", NULL ) )
1609 #else
1610                 if( !hal_device_property_exists( ctx, devices[ i ],
1611                                                 "storage.cdrom.dvd" ) )
1612 #endif
1613                 {
1614                     continue;
1615                 }
1616 #ifdef HAVE_HAL_1
1617                 b_dvd = libhal_device_get_property_bool( ctx, devices[ i ],
1618                                                  "storage.cdrom.dvd", NULL  );
1619                 block_dev = libhal_device_get_property_string( ctx,
1620                                 devices[ i ], "block.device" , NULL );
1621 #else
1622                 b_dvd = hal_device_get_property_bool( ctx, devices[ i ],
1623                                                       "storage.cdrom.dvd" );
1624                 block_dev = hal_device_get_property_string( ctx, devices[ i ],
1625                                                             "block.device" );
1626 #endif
1627                 if( b_dvd )
1628                 {
1629                     config_PutPsz( p_vlc, "dvd", block_dev );
1630                 }
1631
1632                 config_PutPsz( p_vlc, "vcd", block_dev );
1633                 config_PutPsz( p_vlc, "cd-audio", block_dev );
1634 #ifdef HAVE_HAL_1
1635                 libhal_free_string( block_dev );
1636 #else
1637                 hal_free_string( block_dev );
1638 #endif
1639             }
1640 #ifdef HAVE_HAL_1
1641             libhal_free_string_array( devices );
1642 #else
1643             hal_free_string_array( devices );
1644 #endif
1645         }
1646
1647 #ifdef HAVE_HAL_1
1648         libhal_ctx_shutdown( ctx, NULL );
1649 #else
1650         hal_shutdown( ctx );
1651 #endif
1652     }
1653     else
1654     {
1655         msg_Warn( p_vlc, "Unable to get HAL device properties" );
1656     }
1657 #endif
1658 }