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