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