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