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