]> git.sesse.net Git - vlc/blob - src/libvlc.c
6f377350efb0dcaff0eadab04c009c518692714f
[vlc] / src / libvlc.c
1 /*****************************************************************************
2  * libvlc.c: main libvlc source
3  *****************************************************************************
4  * Copyright (C) 1998-2002 VideoLAN
5  * $Id: libvlc.c,v 1.60 2003/01/31 13:52:26 sam Exp $
6  *
7  * Authors: Vincent Seguin <seguin@via.ecp.fr>
8  *          Samuel Hocevar <sam@zoy.org>
9  *          Gildas Bazin <gbazin@netcourrier.com>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * Pretend we are a builtin module
28  *****************************************************************************/
29 #define MODULE_NAME main
30 #define MODULE_PATH main
31 #define __BUILTIN__
32
33 /*****************************************************************************
34  * Preamble
35  *****************************************************************************/
36 #include <vlc/vlc.h>
37
38 #ifdef HAVE_ERRNO_H
39 #   include <errno.h>                                              /* ENOMEM */
40 #endif
41 #include <stdio.h>                                              /* sprintf() */
42 #include <string.h>                                            /* strerror() */
43 #include <stdlib.h>                                                /* free() */
44
45 #ifndef WIN32
46 #   include <netinet/in.h>                            /* BSD: struct in_addr */
47 #endif
48
49 #ifdef HAVE_UNISTD_H
50 #   include <unistd.h>
51 #elif defined( _MSC_VER ) && defined( _WIN32 ) && !defined( UNDER_CE )
52 #   include <io.h>
53 #endif
54
55 #ifdef WIN32                       /* optind, getopt(), included in unistd.h */
56 #   include "extras/getopt.h"
57 #endif
58
59 #ifdef HAVE_LOCALE_H
60 #   include <locale.h>
61 #endif
62
63 #include "vlc_cpu.h"                                        /* CPU detection */
64 #include "os_specific.h"
65
66 #include "error.h"
67 #include "netutils.h"                                 /* network_ChannelJoin */
68
69 #include "stream_control.h"
70 #include "input_ext-intf.h"
71
72 #include "vlc_playlist.h"
73 #include "interface.h"
74
75 #include "audio_output.h"
76
77 #include "video.h"
78 #include "video_output.h"
79
80 #include "libvlc.h"
81
82 /*****************************************************************************
83  * The evil global variable. We handle it with care, don't worry.
84  *****************************************************************************/
85 static libvlc_t libvlc;
86 static vlc_t *  p_static_vlc;
87
88 /*****************************************************************************
89  * Local prototypes
90  *****************************************************************************/
91 static void SetLanguage   ( char const * );
92 static int  GetFilenames  ( vlc_t *, int, char *[] );
93 static void Usage         ( vlc_t *, char const *psz_module_name );
94 static void ListModules   ( vlc_t * );
95 static void Version       ( void );
96
97 #ifdef WIN32
98 static void ShowConsole   ( void );
99 #endif
100
101 /*****************************************************************************
102  * VLC_Version: return the libvlc version.
103  *****************************************************************************
104  * This function returns full version string (numeric version and codename).
105  *****************************************************************************/
106 char const * VLC_Version( void )
107 {
108     return VERSION_MESSAGE;
109 }
110
111 /*****************************************************************************
112  * VLC_Error: strerror() equivalent
113  *****************************************************************************
114  * This function returns full version string (numeric version and codename).
115  *****************************************************************************/
116 char const * VLC_Error( int i_err )
117 {
118     return vlc_error( i_err );
119 }
120
121 /*****************************************************************************
122  * VLC_Create: allocate a vlc_t structure, and initialize libvlc if needed.
123  *****************************************************************************
124  * This function allocates a vlc_t structure and returns a negative value
125  * in case of failure. Also, the thread system is initialized.
126  *****************************************************************************/
127 int VLC_Create( void )
128 {
129     int i_ret;
130     vlc_t * p_vlc = NULL;
131     vlc_value_t lockval;
132
133     /* vlc_threads_init *must* be the first internal call! No other call is
134      * allowed before the thread system has been initialized. */
135     i_ret = vlc_threads_init( &libvlc );
136     if( i_ret < 0 )
137     {
138         return i_ret;
139     }
140
141     /* Now that the thread system is initialized, we don't have much, but
142      * at least we have var_Create */
143     var_Create( &libvlc, "libvlc", VLC_VAR_MUTEX );
144     var_Get( &libvlc, "libvlc", &lockval );
145     vlc_mutex_lock( lockval.p_address );
146     if( !libvlc.b_ready )
147     {
148         char *psz_env;
149
150         /* Guess what CPU we have */
151         libvlc.i_cpu = CPUCapabilities();
152
153         /* Find verbosity from VLC_VERBOSE environment variable */
154         psz_env = getenv( "VLC_VERBOSE" );
155         libvlc.i_verbose = psz_env ? atoi( psz_env ) : -1;
156
157 #ifdef HAVE_ISATTY
158         libvlc.b_color = isatty( 2 ); /* 2 is for stderr */
159 #else
160         libvlc.b_color = VLC_FALSE;
161 #endif
162
163         /* Initialize message queue */
164         msg_Create( &libvlc );
165
166         /* Announce who we are */
167         msg_Dbg( &libvlc, COPYRIGHT_MESSAGE );
168         msg_Dbg( &libvlc, "libvlc was configured with %s", CONFIGURE_LINE );
169
170         /* Set language now, otherwise the main module's strings will not
171          * be translated. FIXME: this is a hack, the correct way is to have
172          * SetLanguage dynamically retranslate all module strings. */
173         SetLanguage( "" );
174
175         /* Initialize the module bank and load the configuration of the
176          * main module. We need to do this at this stage to be able to display
177          * a short help if required by the user. (short help == main module
178          * options) */
179         module_InitBank( &libvlc );
180         module_LoadMain( &libvlc );
181
182         libvlc.b_ready = VLC_TRUE;
183     }
184     vlc_mutex_unlock( lockval.p_address );
185     var_Destroy( &libvlc, "libvlc" );
186
187     /* Allocate a vlc object */
188     p_vlc = vlc_object_create( &libvlc, VLC_OBJECT_VLC );
189     if( p_vlc == NULL )
190     {
191         return VLC_EGENERIC;
192     }
193
194     p_vlc->psz_object_name = "root";
195
196     /* Initialize mutexes */
197     vlc_mutex_init( p_vlc, &p_vlc->config_lock );
198
199     /* Store our newly allocated structure in the global list */
200     vlc_object_attach( p_vlc, &libvlc );
201
202     /* Store data for the non-reentrant API */
203     p_static_vlc = p_vlc;
204
205     return p_vlc->i_object_id;
206 }
207
208 /*****************************************************************************
209  * VLC_Init: initialize a vlc_t structure.
210  *****************************************************************************
211  * This function initializes a previously allocated vlc_t structure:
212  *  - CPU detection
213  *  - gettext initialization
214  *  - message queue, module bank and playlist initialization
215  *  - configuration and commandline parsing
216  *****************************************************************************/
217 int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] )
218 {
219     char         p_capabilities[200];
220     char *       p_tmp;
221     char *       psz_modules;
222     char *       psz_parser;
223     vlc_bool_t   b_exit;
224     vlc_t *      p_vlc;
225     module_t    *p_help_module;
226     playlist_t  *p_playlist;
227
228     p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
229
230     if( !p_vlc )
231     {
232         return VLC_ENOOBJ;
233     }
234
235     /*
236      * System specific initialization code
237      */
238     system_Init( p_vlc, &i_argc, ppsz_argv );
239
240     /* Get the executable name (similar to the basename command) */
241     if( i_argc > 0 )
242     {
243         p_vlc->psz_object_name = p_tmp = ppsz_argv[ 0 ];
244         while( *p_tmp )
245         {
246             if( *p_tmp == '/' ) p_vlc->psz_object_name = ++p_tmp;
247             else ++p_tmp;
248         }
249     }
250     else
251     {
252         p_vlc->psz_object_name = "vlc";
253     }
254
255     /*
256      * Support for gettext
257      */
258     SetLanguage( "" );
259
260     /* Translate "C" to the language code: "fr", "en_GB", "nl", "ru"... */
261     msg_Dbg( p_vlc, "translation test: code is \"%s\"", _("C") );
262
263     /* Hack: insert the help module here */
264     p_help_module = vlc_object_create( p_vlc, VLC_OBJECT_MODULE );
265     if( p_help_module == NULL )
266     {
267         //module_EndBank( p_vlc );
268         if( i_object ) vlc_object_release( p_vlc );
269         return VLC_EGENERIC;
270     }
271     p_help_module->psz_object_name = "help";
272     config_Duplicate( p_help_module, p_help_config );
273     vlc_object_attach( p_help_module, libvlc.p_module_bank );
274     /* End hack */
275
276     if( config_LoadCmdLine( p_vlc, &i_argc, ppsz_argv, VLC_TRUE ) )
277     {
278         vlc_object_detach( p_help_module );
279         config_Free( p_help_module );
280         vlc_object_destroy( p_help_module );
281         //module_EndBank( p_vlc );
282         if( i_object ) vlc_object_release( p_vlc );
283         return VLC_EGENERIC;
284     }
285
286     b_exit = VLC_FALSE;
287
288     /* Check for short help option */
289     if( config_GetInt( p_vlc, "help" ) )
290     {
291         fprintf( stdout, _("Usage: %s [options] [items]...\n\n"),
292                          p_vlc->psz_object_name );
293         Usage( p_vlc, "main" );
294         Usage( p_vlc, "help" );
295         b_exit = VLC_TRUE;
296     }
297     /* Check for version option */
298     else if( config_GetInt( p_vlc, "version" ) )
299     {
300         Version();
301         b_exit = VLC_TRUE;
302     }
303
304     /* Hack: remove the help module here */
305     vlc_object_detach( p_help_module );
306     /* End hack */
307
308     if( b_exit )
309     {
310         config_Free( p_help_module );
311         vlc_object_destroy( p_help_module );
312         //module_EndBank( p_vlc );
313         if( i_object ) vlc_object_release( p_vlc );
314         return VLC_EEXIT;
315     }
316
317     /*
318      * Load the builtins and plugins into the module_bank.
319      * We have to do it before config_Load*() because this also gets the
320      * list of configuration options exported by each module and loads their
321      * default values.
322      */
323     module_LoadBuiltins( &libvlc );
324     module_LoadPlugins( &libvlc );
325     msg_Dbg( p_vlc, "module bank initialized, found %i modules",
326                     libvlc.p_module_bank->i_children );
327
328     /* Hack: insert the help module here */
329     vlc_object_attach( p_help_module, libvlc.p_module_bank );
330     /* End hack */
331
332     /* Check for help on modules */
333     if( (p_tmp = config_GetPsz( p_vlc, "module" )) )
334     {
335         Usage( p_vlc, p_tmp );
336         free( p_tmp );
337         b_exit = VLC_TRUE;
338     }
339     /* Check for long help option */
340     else if( config_GetInt( p_vlc, "longhelp" ) )
341     {
342         Usage( p_vlc, NULL );
343         b_exit = VLC_TRUE;
344     }
345     /* Check for module list option */
346     else if( config_GetInt( p_vlc, "list" ) )
347     {
348         ListModules( p_vlc );
349         b_exit = VLC_TRUE;
350     }
351
352     /* Hack: remove the help module here */
353     vlc_object_detach( p_help_module );
354     config_Free( p_help_module );
355     vlc_object_destroy( p_help_module );
356     /* End hack */
357
358     if( b_exit )
359     {
360         //module_EndBank( p_vlc );
361         if( i_object ) vlc_object_release( p_vlc );
362         return VLC_EEXIT;
363     }
364
365     /*
366      * Override default configuration with config file settings
367      */
368     p_vlc->psz_homedir = config_GetHomeDir();
369     config_LoadConfigFile( p_vlc, NULL );
370
371     /*
372      * Override configuration with command line settings
373      */
374     if( config_LoadCmdLine( p_vlc, &i_argc, ppsz_argv, VLC_FALSE ) )
375     {
376 #ifdef WIN32
377         ShowConsole();
378         /* Pause the console because it's destroyed when we exit */
379         fprintf( stderr, "The command line options couldn't be loaded, check "
380                  "that they are valid.\nPress the RETURN key to continue..." );
381         getchar();
382 #endif
383         //module_EndBank( p_vlc );
384         if( i_object ) vlc_object_release( p_vlc );
385         return VLC_EGENERIC;
386     }
387
388     /*
389      * System specific configuration
390      */
391     system_Configure( p_vlc );
392
393     /*
394      * Message queue options
395      */
396     if( config_GetInt( p_vlc, "quiet" ) )
397     {
398         libvlc.i_verbose = -1;
399     }
400     else
401     {
402         int i_tmp = config_GetInt( p_vlc, "verbose" );
403         if( i_tmp >= 0 )
404         {
405             libvlc.i_verbose = __MIN( i_tmp, 2 );
406         }
407     }
408     libvlc.b_color = libvlc.b_color || config_GetInt( p_vlc, "color" );
409
410     /*
411      * Output messages that may still be in the queue
412      */
413     msg_Flush( p_vlc );
414
415     /* p_vlc inititalization. FIXME ? */
416     p_vlc->i_desync = config_GetInt( p_vlc, "desync" ) * (mtime_t)1000;
417
418 #if defined( __i386__ )
419     if( !config_GetInt( p_vlc, "mmx" ) )
420         libvlc.i_cpu &= ~CPU_CAPABILITY_MMX;
421     if( !config_GetInt( p_vlc, "3dn" ) )
422         libvlc.i_cpu &= ~CPU_CAPABILITY_3DNOW;
423     if( !config_GetInt( p_vlc, "mmxext" ) )
424         libvlc.i_cpu &= ~CPU_CAPABILITY_MMXEXT;
425     if( !config_GetInt( p_vlc, "sse" ) )
426         libvlc.i_cpu &= ~CPU_CAPABILITY_SSE;
427 #endif
428 #if defined( __powerpc__ ) || defined( SYS_DARWIN )
429     if( !config_GetInt( p_vlc, "altivec" ) )
430         libvlc.i_cpu &= ~CPU_CAPABILITY_ALTIVEC;
431 #endif
432
433 #define PRINT_CAPABILITY( capability, string )                              \
434     if( libvlc.i_cpu & capability )                                         \
435     {                                                                       \
436         strncat( p_capabilities, string " ",                                \
437                  sizeof(p_capabilities) - strlen(p_capabilities) );         \
438         p_capabilities[sizeof(p_capabilities) - 1] = '\0';                  \
439     }
440
441     p_capabilities[0] = '\0';
442     PRINT_CAPABILITY( CPU_CAPABILITY_486, "486" );
443     PRINT_CAPABILITY( CPU_CAPABILITY_586, "586" );
444     PRINT_CAPABILITY( CPU_CAPABILITY_PPRO, "Pentium Pro" );
445     PRINT_CAPABILITY( CPU_CAPABILITY_MMX, "MMX" );
446     PRINT_CAPABILITY( CPU_CAPABILITY_3DNOW, "3DNow!" );
447     PRINT_CAPABILITY( CPU_CAPABILITY_MMXEXT, "MMXEXT" );
448     PRINT_CAPABILITY( CPU_CAPABILITY_SSE, "SSE" );
449     PRINT_CAPABILITY( CPU_CAPABILITY_ALTIVEC, "AltiVec" );
450     PRINT_CAPABILITY( CPU_CAPABILITY_FPU, "FPU" );
451     msg_Dbg( p_vlc, "CPU has capabilities %s", p_capabilities );
452
453     /*
454      * Choose the best memcpy module
455      */
456     p_vlc->p_memcpy_module = module_Need( p_vlc, "memcpy", "$memcpy" );
457
458     if( p_vlc->pf_memcpy == NULL )
459     {
460         p_vlc->pf_memcpy = memcpy;
461     }
462
463     if( p_vlc->pf_memset == NULL )
464     {
465         p_vlc->pf_memset = memset;
466     }
467
468     /*
469      * Initialize shared resources and libraries
470      */
471     if( config_GetInt( p_vlc, "network-channel" )
472          && network_ChannelCreate( p_vlc ) )
473     {
474         /* On error during Channels initialization, switch off channels */
475         msg_Warn( p_vlc,
476                   "channels initialization failed, deactivating channels" );
477         config_PutInt( p_vlc, "network-channel", VLC_FALSE );
478     }
479
480     /*
481      * Initialize playlist and get commandline files
482      */
483     p_playlist = playlist_Create( p_vlc );
484     if( !p_playlist )
485     {
486         msg_Err( p_vlc, "playlist initialization failed" );
487         if( p_vlc->p_memcpy_module != NULL )
488         {
489             module_Unneed( p_vlc, p_vlc->p_memcpy_module );
490         }
491         //module_EndBank( p_vlc );
492         if( i_object ) vlc_object_release( p_vlc );
493         return VLC_EGENERIC;
494     }
495
496     /*
497      * Load background interfaces
498      */
499     psz_modules = config_GetPsz( p_vlc, "extraintf" );
500     psz_parser = psz_modules;
501     while ( psz_parser && *psz_parser )
502     {
503         char *psz_module;
504         psz_module = psz_parser;
505         psz_parser = strchr( psz_module, ',' );
506         if ( psz_parser )
507         {
508             *psz_parser = '\0';
509             psz_parser++;
510         }
511         VLC_AddIntf( 0, psz_module, VLC_FALSE );
512     }
513     if ( psz_modules )
514     {
515         free( psz_modules );
516     }
517
518     /*
519      * Get input filenames given as commandline arguments
520      */
521     GetFilenames( p_vlc, i_argc, ppsz_argv );
522
523     if( i_object ) vlc_object_release( p_vlc );
524     return VLC_SUCCESS;
525 }
526
527 /*****************************************************************************
528  * VLC_AddIntf: add an interface
529  *****************************************************************************
530  * This function opens an interface plugin and runs it. If b_block is set
531  * to 0, VLC_AddIntf will return immediately and let the interface run in a
532  * separate thread. If b_block is set to 1, VLC_AddIntf will continue until
533  * user requests to quit.
534  *****************************************************************************/
535 int VLC_AddIntf( int i_object, char const *psz_module, vlc_bool_t b_block )
536 {
537     int i_err;
538     intf_thread_t *p_intf;
539     vlc_t *p_vlc;
540     char *psz_oldmodule = NULL;
541
542     p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
543
544     if( !p_vlc )
545     {
546         return VLC_ENOOBJ;
547     }
548
549     if( psz_module )
550     {
551         psz_oldmodule = config_GetPsz( p_vlc, "intf" );
552         config_PutPsz( p_vlc, "intf", psz_module );
553     }
554
555     /* Try to create the interface */
556     p_intf = intf_Create( p_vlc );
557
558     if( psz_module )
559     {
560         config_PutPsz( p_vlc, "intf", psz_oldmodule );
561         if( psz_oldmodule )
562         {
563             free( psz_oldmodule );
564         }
565     }
566
567     if( p_intf == NULL )
568     {
569         msg_Err( p_vlc, "interface initialization failed" );
570         if( i_object ) vlc_object_release( p_vlc );
571         return VLC_EGENERIC;
572     }
573
574     /* Try to run the interface */
575     p_intf->b_block = b_block;
576     i_err = intf_RunThread( p_intf );
577     if( i_err )
578     {
579         vlc_object_detach( p_intf );
580         intf_Destroy( p_intf );
581         if( i_object ) vlc_object_release( p_vlc );
582         return i_err;
583     }
584
585     if( i_object ) vlc_object_release( p_vlc );
586     return VLC_SUCCESS;
587 }
588
589 /*****************************************************************************
590  * VLC_Destroy: stop playing and destroy everything.
591  *****************************************************************************
592  * This function requests the running threads to finish, waits for their
593  * termination, and destroys their structure.
594  *****************************************************************************/
595 int VLC_Destroy( int i_object )
596 {
597     vlc_t *p_vlc;
598
599     p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
600
601     if( !p_vlc )
602     {
603         return VLC_ENOOBJ;
604     }
605
606     /*
607      * Go back into channel 0 which is the network
608      */
609     if( config_GetInt( p_vlc, "network-channel" ) && p_vlc->p_channel )
610     {
611         network_ChannelJoin( p_vlc, COMMON_CHANNEL );
612     }
613
614     /*
615      * Free allocated memory
616      */
617     if( p_vlc->p_memcpy_module )
618     {
619         module_Unneed( p_vlc, p_vlc->p_memcpy_module );
620         p_vlc->p_memcpy_module = NULL;
621     }
622
623     if( p_vlc->psz_homedir )
624     {
625         free( p_vlc->psz_homedir );
626         p_vlc->psz_homedir = NULL;
627     }
628
629     /*
630      * XXX: Free module bank !
631      */
632     //module_EndBank( p_vlc );
633
634     /*
635      * System specific cleaning code
636      */
637     system_End( p_vlc );
638
639     /* Destroy mutexes */
640     vlc_mutex_destroy( &p_vlc->config_lock );
641
642     vlc_object_detach( p_vlc );
643
644     vlc_object_destroy( p_vlc );
645
646     /* Stop thread system: last one out please shut the door! */
647     vlc_threads_end( &libvlc );
648
649     if( i_object ) vlc_object_release( p_vlc );
650     return VLC_SUCCESS;
651 }
652
653 /*****************************************************************************
654  * VLC_Die: ask vlc to die.
655  *****************************************************************************
656  * This function sets p_vlc->b_die to VLC_TRUE, but does not do any other
657  * task. It is your duty to call vlc_end and VLC_Destroy afterwards.
658  *****************************************************************************/
659 int VLC_Die( int i_object )
660 {
661     vlc_t *p_vlc;
662
663     p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
664
665     if( !p_vlc )
666     {
667         return VLC_ENOOBJ;
668     }
669
670     p_vlc->b_die = VLC_TRUE;
671
672     if( i_object ) vlc_object_release( p_vlc );
673     return VLC_SUCCESS;
674 }
675
676 /*****************************************************************************
677  * VLC_AddTarget: adds a target for playing.
678  *****************************************************************************
679  * This function adds psz_target to the current playlist. If a playlist does
680  * not exist, it will create one.
681  *****************************************************************************/
682 int VLC_AddTarget( int i_object, char const *psz_target, int i_mode, int i_pos )
683 {
684     int i_err;
685     playlist_t *p_playlist;
686     vlc_t *p_vlc;
687
688     p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
689
690     if( !p_vlc )
691     {
692         return VLC_ENOOBJ;
693     }
694
695     p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, FIND_ANYWHERE );
696
697     if( p_playlist == NULL )
698     {
699         msg_Dbg( p_vlc, "no playlist present, creating one" );
700         p_playlist = playlist_Create( p_vlc );
701
702         if( p_playlist == NULL )
703         {
704             if( i_object ) vlc_object_release( p_vlc );
705             return VLC_EGENERIC;
706         }
707
708         vlc_object_yield( p_playlist );
709     }
710
711     i_err = playlist_Add( p_playlist, psz_target, i_mode, i_pos );
712
713     vlc_object_release( p_playlist );
714
715     if( i_object ) vlc_object_release( p_vlc );
716     return i_err;
717 }
718
719 /*****************************************************************************
720  * VLC_Set: set a vlc variable
721  *****************************************************************************
722  *
723  *****************************************************************************/
724 int VLC_Set( int i_object, char const *psz_var, vlc_value_t value )
725 {
726     vlc_t *p_vlc;
727     int i_ret;
728
729     p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
730
731     if( !p_vlc )
732     {
733         return VLC_ENOOBJ;
734     }
735
736     /* FIXME: Temporary hack for Mozilla, if variable starts with conf:: then
737      * we handle it as a configuration variable. Don't tell Gildas :) -- sam */
738     if( !strncmp( psz_var, "conf::", 6 ) )
739     {
740         module_config_t *p_item;
741         char const *psz_newvar = psz_var + 6;
742
743         p_item = config_FindConfig( VLC_OBJECT(p_vlc), psz_newvar );
744
745         if( p_item )
746         {
747             switch( p_item->i_type )
748             {
749                 case CONFIG_ITEM_BOOL:
750                     config_PutInt( p_vlc, psz_newvar, value.b_bool );
751                     break;
752                 case CONFIG_ITEM_INTEGER:
753                     config_PutInt( p_vlc, psz_newvar, value.i_int );
754                     break;
755                 case CONFIG_ITEM_FLOAT:
756                     config_PutFloat( p_vlc, psz_newvar, value.f_float );
757                     break;
758                 default:
759                     config_PutPsz( p_vlc, psz_newvar, value.psz_string );
760                     break;
761             }
762             if( i_object ) vlc_object_release( p_vlc );
763             return VLC_SUCCESS;
764         }
765     }
766
767     i_ret = var_Set( p_vlc, psz_var, value );
768
769     if( i_object ) vlc_object_release( p_vlc );
770     return i_ret;
771 }
772
773 /*****************************************************************************
774  * VLC_Get: get a vlc variable
775  *****************************************************************************
776  *
777  *****************************************************************************/
778 int VLC_Get( int i_object, char const *psz_var, vlc_value_t *p_value )
779 {
780     vlc_t *p_vlc;
781     int i_ret;
782
783     p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
784
785     if( !p_vlc )
786     {
787         return VLC_ENOOBJ;
788     }
789
790     i_ret = var_Get( p_vlc, psz_var, p_value );
791
792     if( i_object ) vlc_object_release( p_vlc );
793     return i_ret;
794 }
795
796 /* FIXME: temporary hacks */
797
798 /*****************************************************************************
799  * VLC_Play: play
800  *****************************************************************************/
801 int VLC_Play( int i_object )
802 {
803     playlist_t * p_playlist;
804     vlc_t *p_vlc;
805
806     p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
807
808     /* Check that the handle is valid */
809     if( !p_vlc )
810     {
811         return VLC_ENOOBJ;
812     }
813
814     vlc_thread_set_priority( p_vlc, VLC_THREAD_PRIORITY_LOW );
815
816     p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, FIND_CHILD );
817
818     if( !p_playlist )
819     {
820         if( i_object ) vlc_object_release( p_vlc );
821         return VLC_ENOOBJ;
822     }
823
824     vlc_mutex_lock( &p_playlist->object_lock );
825     if( p_playlist->i_size )
826     {
827         vlc_mutex_unlock( &p_playlist->object_lock );
828         playlist_Play( p_playlist );
829     }
830     else
831     {
832         vlc_mutex_unlock( &p_playlist->object_lock );
833     }
834
835     vlc_object_release( p_playlist );
836
837     if( i_object ) vlc_object_release( p_vlc );
838     return VLC_SUCCESS;
839 }
840
841 /*****************************************************************************
842  * VLC_Stop: stop
843  *****************************************************************************/
844 int VLC_Stop( int i_object )
845 {
846     intf_thread_t *   p_intf;
847     playlist_t    *   p_playlist;
848     vout_thread_t *   p_vout;
849     aout_instance_t * p_aout;
850     vlc_t *p_vlc;
851
852     p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
853
854     /* Check that the handle is valid */
855     if( !p_vlc )
856     {
857         return VLC_ENOOBJ;
858     }
859
860     /*
861      * Ask the interfaces to stop and destroy them
862      */
863     msg_Dbg( p_vlc, "removing all interfaces" );
864     while( (p_intf = vlc_object_find( p_vlc, VLC_OBJECT_INTF, FIND_CHILD )) )
865     {
866         intf_StopThread( p_intf );
867         vlc_object_detach( p_intf );
868         vlc_object_release( p_intf );
869         intf_Destroy( p_intf );
870     }
871
872     /*
873      * Free playlists
874      */
875     msg_Dbg( p_vlc, "removing all playlists" );
876     while( (p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST,
877                                           FIND_CHILD )) )
878     {
879         vlc_object_detach( p_playlist );
880         vlc_object_release( p_playlist );
881         playlist_Destroy( p_playlist );
882     }
883
884     /*
885      * Free video outputs
886      */
887     msg_Dbg( p_vlc, "removing all video outputs" );
888     while( (p_vout = vlc_object_find( p_vlc, VLC_OBJECT_VOUT, FIND_CHILD )) )
889     {
890         vlc_object_detach( p_vout );
891         vlc_object_release( p_vout );
892         vout_Destroy( p_vout );
893     }
894
895     /*
896      * Free audio outputs
897      */
898     msg_Dbg( p_vlc, "removing all audio outputs" );
899     while( (p_aout = vlc_object_find( p_vlc, VLC_OBJECT_AOUT, FIND_CHILD )) )
900     {
901         vlc_object_detach( (vlc_object_t *)p_aout );
902         vlc_object_release( (vlc_object_t *)p_aout );
903         aout_Delete( p_aout );
904     }
905
906     if( i_object ) vlc_object_release( p_vlc );
907     return VLC_SUCCESS;
908 }
909
910 /*****************************************************************************
911  * VLC_Pause: toggle pause
912  *****************************************************************************/
913 int VLC_Pause( int i_object )
914 {
915     input_thread_t *p_input;
916     vlc_t *p_vlc;
917
918     p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
919
920     if( !p_vlc )
921     {
922         return VLC_ENOOBJ;
923     }
924
925     p_input = vlc_object_find( p_vlc, VLC_OBJECT_INPUT, FIND_CHILD );
926
927     if( !p_input )
928     {
929         if( i_object ) vlc_object_release( p_vlc );
930         return VLC_ENOOBJ;
931     }
932
933     input_SetStatus( p_input, INPUT_STATUS_PAUSE );
934     vlc_object_release( p_input );
935
936     if( i_object ) vlc_object_release( p_vlc );
937     return VLC_SUCCESS;
938 }
939
940 /*****************************************************************************
941  * VLC_FullScreen: toggle fullscreen mode
942  *****************************************************************************/
943 int VLC_FullScreen( int i_object )
944 {
945     vout_thread_t *p_vout;
946     vlc_t *p_vlc;
947
948     p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
949
950     if( !p_vlc )
951     {
952         return VLC_ENOOBJ;
953     }
954
955     p_vout = vlc_object_find( p_vlc, VLC_OBJECT_VOUT, FIND_CHILD );
956
957     if( !p_vout )
958     {
959         if( i_object ) vlc_object_release( p_vlc );
960         return VLC_ENOOBJ;
961     }
962
963     p_vout->i_changes |= VOUT_FULLSCREEN_CHANGE;
964     vlc_object_release( p_vout );
965
966     if( i_object ) vlc_object_release( p_vlc );
967     return VLC_SUCCESS;
968 }
969
970 /* following functions are local */
971
972 /*****************************************************************************
973  * SetLanguage: set the interface language.
974  *****************************************************************************
975  * We set the LC_MESSAGES locale category for interface messages and buttons,
976  * as well as the LC_CTYPE category for string sorting and possible wide
977  * character support.
978  *****************************************************************************/
979 static void SetLanguage ( char const *psz_lang )
980 {
981 #if defined( ENABLE_NLS ) \
982      && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
983
984     char *          psz_path;
985 #ifdef SYS_DARWIN
986     char            psz_tmp[1024];
987 #endif
988
989 #   if defined( HAVE_INCLUDED_GETTEXT ) && !defined( HAVE_LC_MESSAGES )
990     if( *psz_lang )
991     {
992         /* We set LC_ALL manually because it is the only way to set
993          * the language at runtime under eg. Windows. Beware that this
994          * makes the environment unconsistent when libvlc is unloaded and
995          * should probably be moved to a safer place like vlc.c. */
996         static char psz_lcall[20];
997         snprintf( psz_lcall, 19, "LC_ALL=%s", psz_lang );
998         psz_lcall[19] = '\0';
999         putenv( psz_lcall );
1000     }
1001 #   endif
1002
1003 #   if defined( HAVE_LC_MESSAGES )
1004     setlocale( LC_MESSAGES, psz_lang );
1005 #   endif
1006     setlocale( LC_CTYPE, psz_lang );
1007
1008     /* Specify where to find the locales for current domain */
1009 #ifndef SYS_DARWIN
1010     psz_path = LOCALEDIR;
1011 #else
1012     snprintf( psz_tmp, sizeof(psz_tmp), "%s/%s", libvlc.psz_vlcpath,
1013               "locale" );
1014     psz_path = psz_tmp;
1015 #endif
1016     if( !bindtextdomain( PACKAGE, psz_path ) )
1017     {
1018         fprintf( stderr, "warning: no domain %s in directory %s\n",
1019                  PACKAGE, psz_path );
1020     }
1021
1022     /* Set the default domain */
1023     textdomain( PACKAGE );
1024 #endif
1025 }
1026
1027 /*****************************************************************************
1028  * GetFilenames: parse command line options which are not flags
1029  *****************************************************************************
1030  * Parse command line for input files.
1031  *****************************************************************************/
1032 static int GetFilenames( vlc_t *p_vlc, int i_argc, char *ppsz_argv[] )
1033 {
1034     int i_opt;
1035
1036     /* We assume that the remaining parameters are filenames */
1037     for( i_opt = i_argc - 1; i_opt > optind; i_opt-- )
1038     {
1039         /* TODO: write an internal function of this one, to avoid
1040          *       unnecessary lookups. */
1041         VLC_AddTarget( p_vlc->i_object_id, ppsz_argv[ i_opt ],
1042                        PLAYLIST_INSERT, 0 );
1043     }
1044
1045     /* If there is at least one target, play it */
1046     if( i_argc > optind )
1047     {
1048         VLC_AddTarget( p_vlc->i_object_id, ppsz_argv[ optind ],
1049                        PLAYLIST_INSERT | PLAYLIST_GO, 0 );
1050     }
1051
1052     return VLC_SUCCESS;
1053 }
1054
1055 /*****************************************************************************
1056  * Usage: print program usage
1057  *****************************************************************************
1058  * Print a short inline help. Message interface is initialized at this stage.
1059  *****************************************************************************/
1060 static void Usage( vlc_t *p_this, char const *psz_module_name )
1061 {
1062 #define FORMAT_STRING "      --%s%s%s%s%s%s%s %s%s\n"
1063     /* option name -------------'     | | | |  | |
1064      * <bra --------------------------' | | |  | |
1065      * option type or "" ---------------' | |  | |
1066      * ket> ------------------------------' |  | |
1067      * padding spaces ----------------------'  | |
1068      * comment --------------------------------' |
1069      * comment suffix ---------------------------'
1070      *
1071      * The purpose of having bra and ket is that we might i18n them as well.
1072      */
1073 #define LINE_START 8
1074 #define PADDING_SPACES 25
1075     vlc_list_t *p_list;
1076     module_t *p_parser;
1077     module_config_t *p_item;
1078     char psz_spaces[PADDING_SPACES+LINE_START+1];
1079     char psz_format[sizeof(FORMAT_STRING)];
1080     int i_index;
1081
1082     memset( psz_spaces, ' ', PADDING_SPACES+LINE_START );
1083     psz_spaces[PADDING_SPACES+LINE_START] = '\0';
1084
1085     strcpy( psz_format, FORMAT_STRING );
1086
1087 #ifdef WIN32
1088     ShowConsole();
1089 #endif
1090
1091     /* List all modules */
1092     p_list = vlc_list_find( p_this, VLC_OBJECT_MODULE, FIND_ANYWHERE );
1093
1094     /* Enumerate the config for each module */
1095     for( i_index = 0; i_index < p_list->i_count; i_index++ )
1096     {
1097         vlc_bool_t b_help_module;
1098
1099         p_parser = (module_t *)p_list->p_values[i_index].p_object ;
1100
1101         if( psz_module_name && strcmp( psz_module_name,
1102                                        p_parser->psz_object_name ) )
1103         {
1104             continue;
1105         }
1106
1107         /* Ignore modules without config options */
1108         if( !p_parser->i_config_items )
1109         {
1110             continue;
1111         }
1112
1113         b_help_module = !strcmp( "help", p_parser->psz_object_name );
1114
1115         /* Print module options */
1116         for( p_item = p_parser->p_config;
1117              p_item->i_type != CONFIG_HINT_END;
1118              p_item++ )
1119         {
1120             char *psz_bra = NULL, *psz_type = NULL, *psz_ket = NULL;
1121             char *psz_suf = "", *psz_prefix = NULL;
1122             int i;
1123
1124             switch( p_item->i_type )
1125             {
1126             case CONFIG_HINT_CATEGORY:
1127             case CONFIG_HINT_USAGE:
1128                 fprintf( stdout, " %s\n", p_item->psz_text );
1129                 break;
1130
1131             case CONFIG_ITEM_STRING:
1132             case CONFIG_ITEM_FILE:
1133             case CONFIG_ITEM_MODULE: /* We could also have "=<" here */
1134                 if( !p_item->ppsz_list )
1135                 {
1136                     psz_bra = " <"; psz_type = _("string"); psz_ket = ">";
1137                     break;
1138                 }
1139                 else
1140                 {
1141                     psz_bra = " [";
1142                     psz_type = malloc( 1000 );
1143                     memset( psz_type, 0, 1000 );
1144                     for( i=0; p_item->ppsz_list[i]; i++ )
1145                     {
1146                         strcat( psz_type, p_item->ppsz_list[i] );
1147                         strcat( psz_type, "|" );
1148                     }
1149                     psz_type[ strlen( psz_type ) - 1 ] = '\0';
1150                     psz_ket = "]";
1151                     break;
1152                 }
1153             case CONFIG_ITEM_INTEGER:
1154                 psz_bra = " <"; psz_type = _("integer"); psz_ket = ">";
1155                 break;
1156             case CONFIG_ITEM_FLOAT:
1157                 psz_bra = " <"; psz_type = _("float"); psz_ket = ">";
1158                 break;
1159             case CONFIG_ITEM_BOOL:
1160                 psz_bra = ""; psz_type = ""; psz_ket = "";
1161                 if( !b_help_module )
1162                 {
1163                     psz_suf = p_item->i_value ? _(" (default enabled)") :
1164                                                 _(" (default disabled)");
1165                 }
1166                 break;
1167             }
1168
1169             /* Add short option if any */
1170             if( p_item->i_short )
1171             {
1172                 psz_format[2] = '-';
1173                 psz_format[3] = p_item->i_short;
1174                 psz_format[4] = ',';
1175             }
1176             else
1177             {
1178                 psz_format[2] = ' ';
1179                 psz_format[3] = ' ';
1180                 psz_format[4] = ' ';
1181             }
1182
1183             if( psz_type )
1184             {
1185                 i = PADDING_SPACES - strlen( p_item->psz_name )
1186                      - strlen( psz_bra ) - strlen( psz_type )
1187                      - strlen( psz_ket ) - 1;
1188                 if( p_item->i_type == CONFIG_ITEM_BOOL
1189                      && !b_help_module )
1190                 {
1191                     /* If option is of type --foo-bar, we print its counterpart
1192                      * as --no-foo-bar, but if it is of type --foobar (without
1193                      * dashes in the name) we print it as --nofoobar. Both
1194                      * values are of course valid, only the display changes. */
1195                     vlc_bool_t b_dash = VLC_FALSE;
1196                     psz_prefix = p_item->psz_name;
1197                     while( *psz_prefix )
1198                     {
1199                         if( *psz_prefix++ == '-' )
1200                         {
1201                             b_dash = VLC_TRUE;
1202                             break;
1203                         }
1204                     }
1205
1206                     if( b_dash )
1207                     {
1208                         psz_prefix = ", --no-";
1209                         i -= strlen( p_item->psz_name ) + strlen( ", --no-" );
1210                     }
1211                     else
1212                     {
1213                         psz_prefix = ", --no";
1214                         i -= strlen( p_item->psz_name ) + strlen( ", --no" );
1215                     }
1216                 }
1217
1218                 if( i < 0 )
1219                 {
1220                     i = 0;
1221                     psz_spaces[i] = '\n';
1222                 }
1223                 else
1224                 {
1225                     psz_spaces[i] = '\0';
1226                 }
1227
1228                 if( p_item->i_type == CONFIG_ITEM_BOOL &&
1229                     !b_help_module )
1230                 {
1231                     fprintf( stdout, psz_format, p_item->psz_name, psz_prefix,
1232                              p_item->psz_name, psz_bra, psz_type, psz_ket,
1233                              psz_spaces, p_item->psz_text, psz_suf );
1234                 }
1235                 else
1236                 {
1237                     fprintf( stdout, psz_format, p_item->psz_name, "", "",
1238                              psz_bra, psz_type, psz_ket, psz_spaces,
1239                              p_item->psz_text, psz_suf );
1240                 }
1241                 psz_spaces[i] = ' ';
1242                 if ( p_item->ppsz_list )
1243                 {
1244                     free( psz_type );
1245                 }
1246             }
1247         }
1248     }
1249
1250     /* Release the module list */
1251     vlc_list_release( p_list );
1252
1253 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1254         fprintf( stdout, _("\nPress the RETURN key to continue...\n") );
1255         getchar();
1256 #endif
1257 }
1258
1259 /*****************************************************************************
1260  * ListModules: list the available modules with their description
1261  *****************************************************************************
1262  * Print a list of all available modules (builtins and plugins) and a short
1263  * description for each one.
1264  *****************************************************************************/
1265 static void ListModules( vlc_t *p_this )
1266 {
1267     vlc_list_t *p_list;
1268     module_t *p_parser;
1269     char psz_spaces[22];
1270     int i_index;
1271
1272     memset( psz_spaces, ' ', 22 );
1273
1274 #ifdef WIN32
1275     ShowConsole();
1276 #endif
1277
1278     /* Usage */
1279     fprintf( stdout, _("Usage: %s [options] [items]...\n\n"),
1280                      p_this->p_vlc->psz_object_name );
1281
1282     fprintf( stdout, _("[module]              [description]\n") );
1283
1284     /* List all modules */
1285     p_list = vlc_list_find( p_this, VLC_OBJECT_MODULE, FIND_ANYWHERE );
1286
1287     /* Enumerate each module */
1288     for( i_index = 0; i_index < p_list->i_count; i_index++ )
1289     {
1290         int i;
1291
1292         p_parser = (module_t *)p_list->p_values[i_index].p_object ;
1293
1294         /* Nasty hack, but right now I'm too tired to think about a nice
1295          * solution */
1296         i = 22 - strlen( p_parser->psz_object_name ) - 1;
1297         if( i < 0 ) i = 0;
1298         psz_spaces[i] = 0;
1299
1300         fprintf( stdout, "  %s%s %s\n", p_parser->psz_object_name,
1301                          psz_spaces, p_parser->psz_longname );
1302
1303         psz_spaces[i] = ' ';
1304     }
1305
1306     vlc_list_release( p_list );
1307
1308 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1309     fprintf( stdout, _("\nPress the RETURN key to continue...\n") );
1310     getchar();
1311 #endif
1312 }
1313
1314 /*****************************************************************************
1315  * Version: print complete program version
1316  *****************************************************************************
1317  * Print complete program version and build number.
1318  *****************************************************************************/
1319 static void Version( void )
1320 {
1321 #ifdef WIN32
1322     ShowConsole();
1323 #endif
1324
1325     fprintf( stdout, VERSION_MESSAGE "\n" );
1326     fprintf( stdout,
1327       _("This program comes with NO WARRANTY, to the extent permitted by "
1328         "law.\nYou may redistribute it under the terms of the GNU General "
1329         "Public License;\nsee the file named COPYING for details.\n"
1330         "Written by the VideoLAN team at Ecole Centrale, Paris.\n") );
1331
1332 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1333     fprintf( stdout, _("\nPress the RETURN key to continue...\n") );
1334     getchar();
1335 #endif
1336 }
1337
1338 /*****************************************************************************
1339  * ShowConsole: On Win32, create an output console for debug messages
1340  *****************************************************************************
1341  * This function is useful only on Win32.
1342  *****************************************************************************/
1343 #ifdef WIN32 /*  */
1344 static void ShowConsole( void )
1345 {
1346 #   ifndef UNDER_CE
1347     AllocConsole();
1348     freopen( "CONOUT$", "w", stdout );
1349     freopen( "CONOUT$", "w", stderr );
1350     freopen( "CONIN$", "r", stdin );
1351 #   endif
1352     return;
1353 }
1354 #endif