]> git.sesse.net Git - vlc/blob - src/libvlc.c
utf8_vasprintf(): avoid useless strdup if UTF-8 is assumed
[vlc] / src / libvlc.c
1 /*****************************************************************************
2  * libvlc.c: libvlc instances creation and deletion, interfaces handling
3  *****************************************************************************
4  * Copyright (C) 1998-2008 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 #ifdef HAVE_CONFIG_H
36 # include "config.h"
37 #endif
38
39 #include <vlc_common.h>
40 #include "control/libvlc_internal.h"
41 #include <vlc_input.h>
42
43 #include "modules/modules.h"
44 #include "config/configuration.h"
45
46 #include <stdio.h>                                              /* sprintf() */
47 #include <string.h>
48 #include <stdlib.h>                                                /* free() */
49
50 #ifndef WIN32
51 #   include <netinet/in.h>                            /* BSD: struct in_addr */
52 #endif
53
54 #ifdef HAVE_UNISTD_H
55 #   include <unistd.h>
56 #elif defined( WIN32 ) && !defined( UNDER_CE )
57 #   include <io.h>
58 #endif
59
60 #include "config/vlc_getopt.h"
61
62 #ifdef HAVE_LOCALE_H
63 #   include <locale.h>
64 #endif
65
66 #ifdef HAVE_DBUS
67 /* used for one-instance mode */
68 #   include <dbus/dbus.h>
69 #endif
70
71
72 #include <vlc_media_library.h>
73 #include <vlc_playlist.h>
74 #include <vlc_interface.h>
75
76 #include <vlc_aout.h>
77 #include "audio_output/aout_internal.h"
78
79 #include <vlc_charset.h>
80 #include <vlc_fs.h>
81 #include <vlc_cpu.h>
82 #include <vlc_url.h>
83 #include <vlc_atomic.h>
84
85 #include "libvlc.h"
86
87 #include "playlist/playlist_internal.h"
88
89 #include <vlc_vlm.h>
90
91 #ifdef __APPLE__
92 # include <libkern/OSAtomic.h>
93 #endif
94
95 #include <assert.h>
96
97 /*****************************************************************************
98  * The evil global variables. We handle them with care, don't worry.
99  *****************************************************************************/
100 static unsigned          i_instances = 0;
101
102 #ifndef WIN32
103 static bool b_daemon = false;
104 #endif
105
106 #undef vlc_gc_init
107 #undef vlc_hold
108 #undef vlc_release
109
110 /**
111  * Atomically set the reference count to 1.
112  * @param p_gc reference counted object
113  * @param pf_destruct destruction calback
114  * @return p_gc.
115  */
116 void *vlc_gc_init (gc_object_t *p_gc, void (*pf_destruct) (gc_object_t *))
117 {
118     /* There is no point in using the GC if there is no destructor... */
119     assert (pf_destruct);
120     p_gc->pf_destructor = pf_destruct;
121
122     vlc_atomic_set (&p_gc->refs, 1);
123     return p_gc;
124 }
125
126 /**
127  * Atomically increment the reference count.
128  * @param p_gc reference counted object
129  * @return p_gc.
130  */
131 void *vlc_hold (gc_object_t * p_gc)
132 {
133     uintptr_t refs;
134
135     assert( p_gc );
136     refs = vlc_atomic_inc (&p_gc->refs);
137     assert (refs != 1); /* there had to be a reference already */
138     return p_gc;
139 }
140
141 /**
142  * Atomically decrement the reference count and, if it reaches zero, destroy.
143  * @param p_gc reference counted object.
144  */
145 void vlc_release (gc_object_t *p_gc)
146 {
147     unsigned refs;
148
149     assert( p_gc );
150     refs = vlc_atomic_dec (&p_gc->refs);
151     assert (refs != (uintptr_t)(-1)); /* reference underflow?! */
152     if (refs == 0)
153         p_gc->pf_destructor (p_gc);
154 }
155
156 /*****************************************************************************
157  * Local prototypes
158  *****************************************************************************/
159 #if defined( ENABLE_NLS ) && (defined (__APPLE__) || defined (WIN32)) && \
160     ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
161 static void SetLanguage   ( char const * );
162 #endif
163 static void GetFilenames  ( libvlc_int_t *, unsigned, const char *const [] );
164 static void Help          ( libvlc_int_t *, char const *psz_help_name );
165 static void Usage         ( libvlc_int_t *, char const *psz_search );
166 static void ListModules   ( libvlc_int_t *, bool );
167 static void Version       ( void );
168
169 #ifdef WIN32
170 static void ShowConsole   ( bool );
171 static void PauseConsole  ( void );
172 #endif
173 static int  ConsoleWidth  ( void );
174
175 static vlc_mutex_t global_lock = VLC_STATIC_MUTEX;
176 extern const char psz_vlc_changeset[];
177
178 /**
179  * Allocate a libvlc instance, initialize global data if needed
180  * It also initializes the threading system
181  */
182 libvlc_int_t * libvlc_InternalCreate( void )
183 {
184     libvlc_int_t *p_libvlc;
185     libvlc_priv_t *priv;
186     char *psz_env = NULL;
187
188     /* Now that the thread system is initialized, we don't have much, but
189      * at least we have variables */
190     vlc_mutex_lock( &global_lock );
191     if( i_instances == 0 )
192     {
193         /* Guess what CPU we have */
194         cpu_flags = CPUCapabilities();
195         /* The module bank will be initialized later */
196     }
197
198     /* Allocate a libvlc instance object */
199     p_libvlc = vlc_custom_create( (vlc_object_t *)NULL, sizeof (*priv),
200                                   VLC_OBJECT_GENERIC, "libvlc" );
201     if( p_libvlc != NULL )
202         i_instances++;
203     vlc_mutex_unlock( &global_lock );
204
205     if( p_libvlc == NULL )
206         return NULL;
207
208     priv = libvlc_priv (p_libvlc);
209     priv->p_playlist = NULL;
210     priv->p_ml = NULL;
211     priv->p_dialog_provider = NULL;
212     priv->p_vlm = NULL;
213
214     /* Initialize message queue */
215     priv->msg_bank = msg_Create ();
216     if (unlikely(priv->msg_bank == NULL))
217         goto error;
218
219     /* Find verbosity from VLC_VERBOSE environment variable */
220     psz_env = getenv( "VLC_VERBOSE" );
221     if( psz_env != NULL )
222         priv->i_verbose = atoi( psz_env );
223     else
224         priv->i_verbose = 3;
225 #if defined( HAVE_ISATTY ) && !defined( WIN32 )
226     priv->b_color = isatty( 2 ); /* 2 is for stderr */
227 #else
228     priv->b_color = false;
229 #endif
230
231     /* Initialize mutexes */
232     vlc_mutex_init( &priv->ml_lock );
233     vlc_mutex_init( &priv->timer_lock );
234     vlc_ExitInit( &priv->exit );
235
236     return p_libvlc;
237 error:
238     vlc_object_release (p_libvlc);
239     return NULL;
240 }
241
242 /**
243  * Initialize a libvlc instance
244  * This function initializes a previously allocated libvlc instance:
245  *  - CPU detection
246  *  - gettext initialization
247  *  - message queue, module bank and playlist initialization
248  *  - configuration and commandline parsing
249  */
250 int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
251                          const char *ppsz_argv[] )
252 {
253     libvlc_priv_t *priv = libvlc_priv (p_libvlc);
254     char *       p_tmp = NULL;
255     char *       psz_modules = NULL;
256     char *       psz_parser = NULL;
257     char *       psz_control = NULL;
258     bool   b_exit = false;
259     int          i_ret = VLC_EEXIT;
260     playlist_t  *p_playlist = NULL;
261     char        *psz_val;
262 #if defined( ENABLE_NLS ) \
263      && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
264 # if defined (WIN32) || defined (__APPLE__)
265     char *       psz_language;
266 #endif
267 #endif
268
269     /* System specific initialization code */
270     system_Init( p_libvlc, &i_argc, ppsz_argv );
271
272     /*
273      * Support for gettext
274      */
275     vlc_bindtextdomain (PACKAGE_NAME);
276
277     /* Initialize the module bank and load the configuration of the
278      * main module. We need to do this at this stage to be able to display
279      * a short help if required by the user. (short help == main module
280      * options) */
281     module_InitBank( p_libvlc );
282
283     if( config_LoadCmdLine( p_libvlc, i_argc, ppsz_argv, NULL ) )
284     {
285         module_EndBank( p_libvlc, false );
286         return VLC_EGENERIC;
287     }
288
289     priv->i_verbose = var_InheritInteger( p_libvlc, "verbose" );
290     /* Announce who we are - Do it only for first instance ? */
291     msg_Dbg( p_libvlc, "VLC media player - %s", VERSION_MESSAGE );
292     msg_Dbg( p_libvlc, "%s", COPYRIGHT_MESSAGE );
293     msg_Dbg( p_libvlc, "revision %s", psz_vlc_changeset );
294     msg_Dbg( p_libvlc, "configured with %s", CONFIGURE_LINE );
295     /*xgettext: Translate "C" to the language code: "fr", "en_GB", "nl", "ru"... */
296     msg_Dbg( p_libvlc, "translation test: code is \"%s\"", _("C") );
297
298     /* Check for short help option */
299     if( var_InheritBool( p_libvlc, "help" ) )
300     {
301         Help( p_libvlc, "help" );
302         b_exit = true;
303         i_ret = VLC_EEXITSUCCESS;
304     }
305     /* Check for version option */
306     else if( var_InheritBool( p_libvlc, "version" ) )
307     {
308         Version();
309         b_exit = true;
310         i_ret = VLC_EEXITSUCCESS;
311     }
312
313     /* Check for daemon mode */
314 #ifndef WIN32
315     if( var_InheritBool( p_libvlc, "daemon" ) )
316     {
317 #ifdef HAVE_DAEMON
318         char *psz_pidfile = NULL;
319
320         if( daemon( 1, 0) != 0 )
321         {
322             msg_Err( p_libvlc, "Unable to fork vlc to daemon mode" );
323             b_exit = true;
324         }
325         b_daemon = true;
326
327         /* lets check if we need to write the pidfile */
328         psz_pidfile = var_CreateGetNonEmptyString( p_libvlc, "pidfile" );
329         if( psz_pidfile != NULL )
330         {
331             FILE *pidfile;
332             pid_t i_pid = getpid ();
333             msg_Dbg( p_libvlc, "PID is %d, writing it to %s",
334                                i_pid, psz_pidfile );
335             pidfile = vlc_fopen( psz_pidfile,"w" );
336             if( pidfile != NULL )
337             {
338                 utf8_fprintf( pidfile, "%d", (int)i_pid );
339                 fclose( pidfile );
340             }
341             else
342             {
343                 msg_Err( p_libvlc, "cannot open pid file for writing: %s (%m)",
344                          psz_pidfile );
345             }
346         }
347         free( psz_pidfile );
348
349 #else
350         pid_t i_pid;
351
352         if( ( i_pid = fork() ) < 0 )
353         {
354             msg_Err( p_libvlc, "unable to fork vlc to daemon mode" );
355             b_exit = true;
356         }
357         else if( i_pid )
358         {
359             /* This is the parent, exit right now */
360             msg_Dbg( p_libvlc, "closing parent process" );
361             b_exit = true;
362             i_ret = VLC_EEXITSUCCESS;
363         }
364         else
365         {
366             /* We are the child */
367             msg_Dbg( p_libvlc, "daemon spawned" );
368             close( STDIN_FILENO );
369             close( STDOUT_FILENO );
370             close( STDERR_FILENO );
371
372             b_daemon = true;
373         }
374 #endif
375     }
376 #endif
377
378     if( b_exit )
379     {
380         module_EndBank( p_libvlc, false );
381         return i_ret;
382     }
383
384     /* Check for translation config option */
385 #if defined( ENABLE_NLS ) \
386      && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
387 # if defined (WIN32) || defined (__APPLE__)
388     if( !var_InheritBool( p_libvlc, "ignore-config" ) )
389         config_LoadConfigFile( p_libvlc, "main" );
390     priv->i_verbose = var_InheritInteger( p_libvlc, "verbose" );
391
392     /* Check if the user specified a custom language */
393     psz_language = var_CreateGetNonEmptyString( p_libvlc, "language" );
394     if( psz_language && strcmp( psz_language, "auto" ) )
395     {
396         /* Reset the default domain */
397         SetLanguage( psz_language );
398
399         /* Translate "C" to the language code: "fr", "en_GB", "nl", "ru"... */
400         msg_Dbg( p_libvlc, "translation test: code is \"%s\"", _("C") );
401     }
402     free( psz_language );
403 # endif
404 #endif
405
406     /*
407      * Load the builtins and plugins into the module_bank.
408      * We have to do it before config_Load*() because this also gets the
409      * list of configuration options exported by each module and loads their
410      * default values.
411      */
412     module_LoadPlugins( p_libvlc );
413     if( p_libvlc->b_die )
414     {
415         b_exit = true;
416     }
417
418     size_t module_count;
419     module_t **list = module_list_get( &module_count );
420     module_list_free( list );
421     msg_Dbg( p_libvlc, "module bank initialized (%zu modules)", module_count );
422
423     /* Check for help on modules */
424     if( (p_tmp = var_InheritString( p_libvlc, "module" )) )
425     {
426         Help( p_libvlc, p_tmp );
427         free( p_tmp );
428         b_exit = true;
429         i_ret = VLC_EEXITSUCCESS;
430     }
431     /* Check for full help option */
432     else if( var_InheritBool( p_libvlc, "full-help" ) )
433     {
434         var_Create( p_libvlc, "advanced", VLC_VAR_BOOL );
435         var_SetBool( p_libvlc, "advanced", true );
436         var_Create( p_libvlc, "help-verbose", VLC_VAR_BOOL );
437         var_SetBool( p_libvlc, "help-verbose", true );
438         Help( p_libvlc, "full-help" );
439         b_exit = true;
440         i_ret = VLC_EEXITSUCCESS;
441     }
442     /* Check for long help option */
443     else if( var_InheritBool( p_libvlc, "longhelp" ) )
444     {
445         Help( p_libvlc, "longhelp" );
446         b_exit = true;
447         i_ret = VLC_EEXITSUCCESS;
448     }
449     /* Check for module list option */
450     else if( var_InheritBool( p_libvlc, "list" ) )
451     {
452         ListModules( p_libvlc, false );
453         b_exit = true;
454         i_ret = VLC_EEXITSUCCESS;
455     }
456     else if( var_InheritBool( p_libvlc, "list-verbose" ) )
457     {
458         ListModules( p_libvlc, true );
459         b_exit = true;
460         i_ret = VLC_EEXITSUCCESS;
461     }
462
463     /* Check for config file options */
464     if( !var_InheritBool( p_libvlc, "ignore-config" ) )
465     {
466         if( var_InheritBool( p_libvlc, "reset-config" ) )
467         {
468             config_ResetAll( p_libvlc );
469             config_SaveConfigFile( p_libvlc, NULL );
470         }
471     }
472
473     if( module_count <= 1)
474     {
475         msg_Err( p_libvlc, "No modules were found, refusing to start. Check "
476                 "that you properly gave a module path with --plugin-path.");
477         b_exit = true;
478         i_ret = VLC_ENOITEM;
479     }
480
481     if( b_exit )
482     {
483         module_EndBank( p_libvlc, true );
484         return i_ret;
485     }
486
487     /*
488      * Override default configuration with config file settings
489      */
490     if( !var_InheritBool( p_libvlc, "ignore-config" ) )
491         config_LoadConfigFile( p_libvlc, NULL );
492
493     /*
494      * Override configuration with command line settings
495      */
496     int vlc_optind;
497     if( config_LoadCmdLine( p_libvlc, i_argc, ppsz_argv, &vlc_optind ) )
498     {
499 #ifdef WIN32
500         ShowConsole( false );
501         /* Pause the console because it's destroyed when we exit */
502         fprintf( stderr, "The command line options couldn't be loaded, check "
503                  "that they are valid.\n" );
504         PauseConsole();
505 #endif
506         module_EndBank( p_libvlc, true );
507         return VLC_EGENERIC;
508     }
509     priv->i_verbose = var_InheritInteger( p_libvlc, "verbose" );
510
511 /* FIXME: could be replaced by using Unix sockets */
512 #ifdef HAVE_DBUS
513     dbus_threads_init_default();
514
515     if( var_InheritBool( p_libvlc, "one-instance" )
516     || ( var_InheritBool( p_libvlc, "one-instance-when-started-from-file" )
517       && var_InheritBool( p_libvlc, "started-from-file" ) ) )
518     {
519         /* Initialise D-Bus interface, check for other instances */
520         DBusConnection  *p_conn = NULL;
521         DBusError       dbus_error;
522
523         dbus_error_init( &dbus_error );
524
525         /* connect to the session bus */
526         p_conn = dbus_bus_get( DBUS_BUS_SESSION, &dbus_error );
527         if( !p_conn )
528         {
529             msg_Err( p_libvlc, "Failed to connect to D-Bus session daemon: %s",
530                     dbus_error.message );
531             dbus_error_free( &dbus_error );
532         }
533         else
534         {
535             /* check if VLC is available on the bus
536              * if not: D-Bus control is not enabled on the other
537              * instance and we can't pass MRLs to it */
538             DBusMessage *p_test_msg = NULL;
539             DBusMessage *p_test_reply = NULL;
540             p_test_msg =  dbus_message_new_method_call(
541                     "org.mpris.vlc", "/",
542                     "org.freedesktop.MediaPlayer", "Identity" );
543             /* block until a reply arrives */
544             p_test_reply = dbus_connection_send_with_reply_and_block(
545                     p_conn, p_test_msg, -1, &dbus_error );
546             dbus_message_unref( p_test_msg );
547             if( p_test_reply == NULL )
548             {
549                 dbus_error_free( &dbus_error );
550                 msg_Dbg( p_libvlc, "No Media Player is running. "
551                         "Continuing normally." );
552             }
553             else
554             {
555                 int i_input;
556                 DBusMessage* p_dbus_msg = NULL;
557                 DBusMessageIter dbus_args;
558                 DBusPendingCall* p_dbus_pending = NULL;
559                 dbus_bool_t b_play;
560
561                 dbus_message_unref( p_test_reply );
562                 msg_Warn( p_libvlc, "Another Media Player is running. Exiting");
563
564                 for( i_input = vlc_optind; i_input < i_argc;i_input++ )
565                 {
566                     msg_Dbg( p_libvlc, "Adds %s to the running Media Player",
567                             ppsz_argv[i_input] );
568
569                     p_dbus_msg = dbus_message_new_method_call(
570                             "org.mpris.vlc", "/TrackList",
571                             "org.freedesktop.MediaPlayer", "AddTrack" );
572
573                     if ( NULL == p_dbus_msg )
574                     {
575                         msg_Err( p_libvlc, "D-Bus problem" );
576                         system_End( p_libvlc );
577                         exit( 1 );
578                     }
579
580                     /* append MRLs */
581                     dbus_message_iter_init_append( p_dbus_msg, &dbus_args );
582                     if ( !dbus_message_iter_append_basic( &dbus_args,
583                                 DBUS_TYPE_STRING, &ppsz_argv[i_input] ) )
584                     {
585                         dbus_message_unref( p_dbus_msg );
586                         system_End( p_libvlc );
587                         exit( 1 );
588                     }
589                     b_play = TRUE;
590                     if( var_InheritBool( p_libvlc, "playlist-enqueue" ) )
591                         b_play = FALSE;
592                     if ( !dbus_message_iter_append_basic( &dbus_args,
593                                 DBUS_TYPE_BOOLEAN, &b_play ) )
594                     {
595                         dbus_message_unref( p_dbus_msg );
596                         system_End( p_libvlc );
597                         exit( 1 );
598                     }
599
600                     /* send message and get a handle for a reply */
601                     if ( !dbus_connection_send_with_reply ( p_conn,
602                                 p_dbus_msg, &p_dbus_pending, -1 ) )
603                     {
604                         msg_Err( p_libvlc, "D-Bus problem" );
605                         dbus_message_unref( p_dbus_msg );
606                         system_End( p_libvlc );
607                         exit( 1 );
608                     }
609
610                     if ( NULL == p_dbus_pending )
611                     {
612                         msg_Err( p_libvlc, "D-Bus problem" );
613                         dbus_message_unref( p_dbus_msg );
614                         system_End( p_libvlc );
615                         exit( 1 );
616                     }
617                     dbus_connection_flush( p_conn );
618                     dbus_message_unref( p_dbus_msg );
619                     /* block until we receive a reply */
620                     dbus_pending_call_block( p_dbus_pending );
621                     dbus_pending_call_unref( p_dbus_pending );
622                 } /* processes all command line MRLs */
623
624                 /* bye bye */
625                 system_End( p_libvlc );
626                 exit( 0 );
627             }
628         }
629         /* we unreference the connection when we've finished with it */
630         if( p_conn ) dbus_connection_unref( p_conn );
631     }
632 #endif
633
634     /*
635      * Message queue options
636      */
637     char * psz_verbose_objects = var_CreateGetNonEmptyString( p_libvlc, "verbose-objects" );
638     if( psz_verbose_objects )
639     {
640         char * psz_object, * iter = psz_verbose_objects;
641         while( (psz_object = strsep( &iter, "," )) )
642         {
643             switch( psz_object[0] )
644             {
645                 printf("%s\n", psz_object+1);
646                 case '+': msg_EnableObjectPrinting(p_libvlc, psz_object+1); break;
647                 case '-': msg_DisableObjectPrinting(p_libvlc, psz_object+1); break;
648                 default:
649                     msg_Err( p_libvlc, "verbose-objects usage: \n"
650                             "--verbose-objects=+printthatobject,"
651                             "-dontprintthatone\n"
652                             "(keyword 'all' to applies to all objects)");
653                     free( psz_verbose_objects );
654                     /* FIXME: leaks!!!! */
655                     return VLC_EGENERIC;
656             }
657         }
658         free( psz_verbose_objects );
659     }
660
661     /* Last chance to set the verbosity. Once we start interfaces and other
662      * threads, verbosity becomes read-only. */
663     var_Create( p_libvlc, "verbose", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
664     if( var_InheritBool( p_libvlc, "quiet" ) )
665     {
666         var_SetInteger( p_libvlc, "verbose", -1 );
667         priv->i_verbose = -1;
668     }
669     vlc_threads_setup( p_libvlc );
670
671     if( priv->b_color )
672         priv->b_color = var_InheritBool( p_libvlc, "color" );
673
674     char p_capabilities[200];
675 #define PRINT_CAPABILITY( capability, string )                              \
676     if( vlc_CPU() & capability )                                            \
677     {                                                                       \
678         strncat( p_capabilities, string " ",                                \
679                  sizeof(p_capabilities) - strlen(p_capabilities) );         \
680         p_capabilities[sizeof(p_capabilities) - 1] = '\0';                  \
681     }
682     p_capabilities[0] = '\0';
683
684 #if defined( __i386__ ) || defined( __x86_64__ )
685     if( !var_InheritBool( p_libvlc, "mmx" ) )
686         cpu_flags &= ~CPU_CAPABILITY_MMX;
687     if( !var_InheritBool( p_libvlc, "3dn" ) )
688         cpu_flags &= ~CPU_CAPABILITY_3DNOW;
689     if( !var_InheritBool( p_libvlc, "mmxext" ) )
690         cpu_flags &= ~CPU_CAPABILITY_MMXEXT;
691     if( !var_InheritBool( p_libvlc, "sse" ) )
692         cpu_flags &= ~CPU_CAPABILITY_SSE;
693     if( !var_InheritBool( p_libvlc, "sse2" ) )
694         cpu_flags &= ~CPU_CAPABILITY_SSE2;
695     if( !var_InheritBool( p_libvlc, "sse3" ) )
696         cpu_flags &= ~CPU_CAPABILITY_SSE3;
697     if( !var_InheritBool( p_libvlc, "ssse3" ) )
698         cpu_flags &= ~CPU_CAPABILITY_SSSE3;
699     if( !var_InheritBool( p_libvlc, "sse41" ) )
700         cpu_flags &= ~CPU_CAPABILITY_SSE4_1;
701     if( !var_InheritBool( p_libvlc, "sse42" ) )
702         cpu_flags &= ~CPU_CAPABILITY_SSE4_2;
703
704     PRINT_CAPABILITY( CPU_CAPABILITY_MMX, "MMX" );
705     PRINT_CAPABILITY( CPU_CAPABILITY_3DNOW, "3DNow!" );
706     PRINT_CAPABILITY( CPU_CAPABILITY_MMXEXT, "MMXEXT" );
707     PRINT_CAPABILITY( CPU_CAPABILITY_SSE, "SSE" );
708     PRINT_CAPABILITY( CPU_CAPABILITY_SSE2, "SSE2" );
709     PRINT_CAPABILITY( CPU_CAPABILITY_SSE3, "SSE3" );
710     PRINT_CAPABILITY( CPU_CAPABILITY_SSSE3, "SSSE3" );
711     PRINT_CAPABILITY( CPU_CAPABILITY_SSE4_1, "SSE4.1" );
712     PRINT_CAPABILITY( CPU_CAPABILITY_SSE4_2, "SSE4.2" );
713     PRINT_CAPABILITY( CPU_CAPABILITY_SSE4A,  "SSE4A" );
714
715 #elif defined( __powerpc__ ) || defined( __ppc__ ) || defined( __ppc64__ )
716     if( !var_InheritBool( p_libvlc, "altivec" ) )
717         cpu_flags &= ~CPU_CAPABILITY_ALTIVEC;
718
719     PRINT_CAPABILITY( CPU_CAPABILITY_ALTIVEC, "AltiVec" );
720
721 #elif defined( __arm__ )
722     PRINT_CAPABILITY( CPU_CAPABILITY_NEON, "NEONv1" );
723
724 #endif
725
726 #if HAVE_FPU
727     strncat( p_capabilities, "FPU ",
728              sizeof(p_capabilities) - strlen( p_capabilities) );
729     p_capabilities[sizeof(p_capabilities) - 1] = '\0';
730 #endif
731
732     if (p_capabilities[0])
733         msg_Dbg( p_libvlc, "CPU has capabilities %s", p_capabilities );
734
735     /*
736      * Choose the best memcpy module
737      */
738     priv->p_memcpy_module = module_need( p_libvlc, "memcpy", "$memcpy", false );
739     /* Avoid being called "memcpy":*/
740     vlc_object_set_name( p_libvlc, "main" );
741
742     priv->b_stats = var_InheritBool( p_libvlc, "stats" );
743     priv->i_timers = 0;
744     priv->pp_timers = NULL;
745
746     priv->i_last_input_id = 0; /* Not very safe, should be removed */
747
748     /*
749      * Initialize hotkey handling
750      */
751     vlc_InitActions( p_libvlc );
752
753     /* Create a variable for showing the fullscreen interface */
754     var_Create( p_libvlc, "intf-show", VLC_VAR_BOOL );
755     var_SetBool( p_libvlc, "intf-show", true );
756
757     /* Create a variable for showing the right click menu */
758     var_Create( p_libvlc, "intf-popupmenu", VLC_VAR_BOOL );
759
760     /* variables for signalling creation of new files */
761     var_Create( p_libvlc, "snapshot-file", VLC_VAR_STRING );
762     var_Create( p_libvlc, "record-file", VLC_VAR_STRING );
763
764     /* some default internal settings */
765     var_Create( p_libvlc, "window", VLC_VAR_STRING );
766     var_Create( p_libvlc, "user-agent", VLC_VAR_STRING );
767     var_SetString( p_libvlc, "user-agent", "(LibVLC "VERSION")" );
768
769     /* Initialize playlist and get commandline files */
770     p_playlist = playlist_Create( VLC_OBJECT(p_libvlc) );
771     if( !p_playlist )
772     {
773         msg_Err( p_libvlc, "playlist initialization failed" );
774         if( priv->p_memcpy_module != NULL )
775         {
776             module_unneed( p_libvlc, priv->p_memcpy_module );
777         }
778         module_EndBank( p_libvlc, true );
779         return VLC_EGENERIC;
780     }
781
782     /* System specific configuration */
783     system_Configure( p_libvlc, i_argc - vlc_optind, ppsz_argv + vlc_optind );
784
785 #if defined(MEDIA_LIBRARY)
786     /* Get the ML */
787     if( var_GetBool( p_libvlc, "load-media-library-on-startup" ) == true )
788     {
789         priv->p_ml = ml_Create( VLC_OBJECT( p_libvlc ), NULL );
790         if( !priv->p_ml )
791         {
792             msg_Err( p_libvlc, "ML initialization failed" );
793             return VLC_EGENERIC;
794         }
795     }
796     else
797     {
798         priv->p_ml = NULL;
799     }
800 #endif
801
802     /* Add service discovery modules */
803     psz_modules = var_InheritString( p_libvlc, "services-discovery" );
804     if( psz_modules )
805     {
806         char *p = psz_modules, *m;
807         while( ( m = strsep( &p, " :," ) ) != NULL )
808             playlist_ServicesDiscoveryAdd( p_playlist, m );
809         free( psz_modules );
810     }
811
812 #ifdef ENABLE_VLM
813     /* Initialize VLM if vlm-conf is specified */
814     psz_parser = var_CreateGetNonEmptyString( p_libvlc, "vlm-conf" );
815     if( psz_parser )
816     {
817         priv->p_vlm = vlm_New( p_libvlc );
818         if( !priv->p_vlm )
819             msg_Err( p_libvlc, "VLM initialization failed" );
820     }
821     free( psz_parser );
822 #endif
823
824     /*
825      * Load background interfaces
826      */
827     psz_modules = var_CreateGetNonEmptyString( p_libvlc, "extraintf" );
828     psz_control = var_CreateGetNonEmptyString( p_libvlc, "control" );
829
830     if( psz_modules && psz_control )
831     {
832         char* psz_tmp;
833         if( asprintf( &psz_tmp, "%s:%s", psz_modules, psz_control ) != -1 )
834         {
835             free( psz_modules );
836             psz_modules = psz_tmp;
837         }
838     }
839     else if( psz_control )
840     {
841         free( psz_modules );
842         psz_modules = strdup( psz_control );
843     }
844
845     psz_parser = psz_modules;
846     while ( psz_parser && *psz_parser )
847     {
848         char *psz_module, *psz_temp;
849         psz_module = psz_parser;
850         psz_parser = strchr( psz_module, ':' );
851         if ( psz_parser )
852         {
853             *psz_parser = '\0';
854             psz_parser++;
855         }
856         if( asprintf( &psz_temp, "%s,none", psz_module ) != -1)
857         {
858             intf_Create( p_libvlc, psz_temp );
859             free( psz_temp );
860         }
861     }
862     free( psz_modules );
863     free( psz_control );
864
865     /*
866      * Always load the hotkeys interface if it exists
867      */
868     intf_Create( p_libvlc, "hotkeys,none" );
869
870 #ifdef HAVE_DBUS
871     /* loads dbus control interface if in one-instance mode
872      * we do it only when playlist exists, because dbus module needs it */
873     if( var_InheritBool( p_libvlc, "one-instance" )
874      || ( var_InheritBool( p_libvlc, "one-instance-when-started-from-file" )
875        && var_InheritBool( p_libvlc, "started-from-file" ) ) )
876         intf_Create( p_libvlc, "dbus,none" );
877
878 # if !defined (HAVE_MAEMO)
879     /* Prevents the power management daemon from suspending the system
880      * when VLC is active */
881     if( var_InheritBool( p_libvlc, "inhibit" ) > 0 )
882         intf_Create( p_libvlc, "inhibit,none" );
883 # endif
884 #endif
885
886     if( var_InheritBool( p_libvlc, "file-logging" ) &&
887         !var_InheritBool( p_libvlc, "syslog" ) )
888     {
889         intf_Create( p_libvlc, "logger,none" );
890     }
891 #ifdef HAVE_SYSLOG_H
892     if( var_InheritBool( p_libvlc, "syslog" ) )
893     {
894         char *logmode = var_CreateGetNonEmptyString( p_libvlc, "logmode" );
895         var_SetString( p_libvlc, "logmode", "syslog" );
896         intf_Create( p_libvlc, "logger,none" );
897
898         if( logmode )
899         {
900             var_SetString( p_libvlc, "logmode", logmode );
901             free( logmode );
902         }
903         var_Destroy( p_libvlc, "logmode" );
904     }
905 #endif
906
907     if( var_InheritBool( p_libvlc, "network-synchronisation") )
908     {
909         intf_Create( p_libvlc, "netsync,none" );
910     }
911
912 #ifdef WIN32
913     if( var_InheritBool( p_libvlc, "prefer-system-codecs") )
914     {
915         char *psz_codecs = var_CreateGetNonEmptyString( p_libvlc, "codec" );
916         if( psz_codecs )
917         {
918             char *psz_morecodecs;
919             if( asprintf(&psz_morecodecs, "%s,dmo,quicktime", psz_codecs) != -1 )
920             {
921                 var_SetString( p_libvlc, "codec", psz_morecodecs);
922                 free( psz_morecodecs );
923             }
924             free( psz_codecs );
925         }
926         else
927             var_SetString( p_libvlc, "codec", "dmo,quicktime");
928     }
929 #endif
930
931 #ifdef __APPLE__
932     var_Create( p_libvlc, "drawable-view-top", VLC_VAR_INTEGER );
933     var_Create( p_libvlc, "drawable-view-left", VLC_VAR_INTEGER );
934     var_Create( p_libvlc, "drawable-view-bottom", VLC_VAR_INTEGER );
935     var_Create( p_libvlc, "drawable-view-right", VLC_VAR_INTEGER );
936     var_Create( p_libvlc, "drawable-clip-top", VLC_VAR_INTEGER );
937     var_Create( p_libvlc, "drawable-clip-left", VLC_VAR_INTEGER );
938     var_Create( p_libvlc, "drawable-clip-bottom", VLC_VAR_INTEGER );
939     var_Create( p_libvlc, "drawable-clip-right", VLC_VAR_INTEGER );
940 #endif
941 #ifdef WIN32
942     var_Create( p_libvlc, "drawable-hwnd", VLC_VAR_ADDRESS );
943 #endif
944
945     /*
946      * Get input filenames given as commandline arguments.
947      * We assume that the remaining parameters are filenames
948      * and their input options.
949      */
950     GetFilenames( p_libvlc, i_argc - vlc_optind, ppsz_argv + vlc_optind );
951
952     /*
953      * Get --open argument
954      */
955     psz_val = var_InheritString( p_libvlc, "open" );
956     if ( psz_val != NULL )
957     {
958         playlist_AddExt( p_playlist, psz_val, NULL, PLAYLIST_INSERT, 0,
959                          -1, 0, NULL, 0, true, pl_Unlocked );
960         free( psz_val );
961     }
962
963     return VLC_SUCCESS;
964 }
965
966 /**
967  * Cleanup a libvlc instance. The instance is not completely deallocated
968  * \param p_libvlc the instance to clean
969  */
970 void libvlc_InternalCleanup( libvlc_int_t *p_libvlc )
971 {
972     libvlc_priv_t *priv = libvlc_priv (p_libvlc);
973     playlist_t    *p_playlist = libvlc_priv (p_libvlc)->p_playlist;
974
975     /* Deactivate the playlist */
976     msg_Dbg( p_libvlc, "deactivating the playlist" );
977     pl_Deactivate( p_libvlc );
978
979     /* Remove all services discovery */
980     msg_Dbg( p_libvlc, "removing all services discovery tasks" );
981     playlist_ServicesDiscoveryKillAll( p_playlist );
982
983     /* Ask the interfaces to stop and destroy them */
984     msg_Dbg( p_libvlc, "removing all interfaces" );
985     libvlc_Quit( p_libvlc );
986     intf_DestroyAll( p_libvlc );
987
988 #ifdef ENABLE_VLM
989     /* Destroy VLM if created in libvlc_InternalInit */
990     if( priv->p_vlm )
991     {
992         vlm_Delete( priv->p_vlm );
993     }
994 #endif
995
996     /* Free playlist now, all threads are gone */
997     playlist_Destroy( p_playlist );
998
999 #if defined(MEDIA_LIBRARY)
1000     media_library_t* p_ml = priv->p_ml;
1001     if( p_ml )
1002     {
1003         ml_Destroy( VLC_OBJECT( p_ml ) );
1004         vlc_object_release( p_ml );
1005         libvlc_priv(p_playlist->p_libvlc)->p_ml = NULL;
1006     }
1007 #endif
1008
1009     stats_TimersDumpAll( p_libvlc );
1010     stats_TimersCleanAll( p_libvlc );
1011
1012     msg_Dbg( p_libvlc, "removing stats" );
1013
1014 #ifndef WIN32
1015     char* psz_pidfile = NULL;
1016
1017     if( b_daemon )
1018     {
1019         psz_pidfile = var_CreateGetNonEmptyString( p_libvlc, "pidfile" );
1020         if( psz_pidfile != NULL )
1021         {
1022             msg_Dbg( p_libvlc, "removing pid file %s", psz_pidfile );
1023             if( unlink( psz_pidfile ) == -1 )
1024             {
1025                 msg_Dbg( p_libvlc, "removing pid file %s: %m",
1026                         psz_pidfile );
1027             }
1028         }
1029         free( psz_pidfile );
1030     }
1031 #endif
1032
1033     if( priv->p_memcpy_module )
1034     {
1035         module_unneed( p_libvlc, priv->p_memcpy_module );
1036         priv->p_memcpy_module = NULL;
1037     }
1038
1039     /* Free module bank. It is refcounted, so we call this each time  */
1040     module_EndBank( p_libvlc, true );
1041
1042     vlc_DeinitActions( p_libvlc );
1043 }
1044
1045 /**
1046  * Destroy everything.
1047  * This function requests the running threads to finish, waits for their
1048  * termination, and destroys their structure.
1049  * It stops the thread systems: no instance can run after this has run
1050  * \param p_libvlc the instance to destroy
1051  */
1052 void libvlc_InternalDestroy( libvlc_int_t *p_libvlc )
1053 {
1054     libvlc_priv_t *priv = libvlc_priv( p_libvlc );
1055
1056     vlc_mutex_lock( &global_lock );
1057     i_instances--;
1058
1059     if( i_instances == 0 )
1060     {
1061         /* System specific cleaning code */
1062         system_End( p_libvlc );
1063     }
1064     vlc_mutex_unlock( &global_lock );
1065
1066     msg_Destroy (priv->msg_bank);
1067
1068     /* Destroy mutexes */
1069     vlc_ExitDestroy( &priv->exit );
1070     vlc_mutex_destroy( &priv->timer_lock );
1071     vlc_mutex_destroy( &priv->ml_lock );
1072
1073 #ifndef NDEBUG /* Hack to dump leaked objects tree */
1074     if( vlc_internals( p_libvlc )->i_refcount > 1 )
1075         while( vlc_internals( p_libvlc )->i_refcount > 0 )
1076             vlc_object_release( p_libvlc );
1077 #endif
1078
1079     assert( vlc_internals( p_libvlc )->i_refcount == 1 );
1080     vlc_object_release( p_libvlc );
1081 }
1082
1083 /**
1084  * Add an interface plugin and run it
1085  */
1086 int libvlc_InternalAddIntf( libvlc_int_t *p_libvlc, char const *psz_module )
1087 {
1088     if( !p_libvlc )
1089         return VLC_EGENERIC;
1090
1091     if( !psz_module ) /* requesting the default interface */
1092     {
1093         char *psz_interface = var_CreateGetNonEmptyString( p_libvlc, "intf" );
1094         if( !psz_interface ) /* "intf" has not been set */
1095         {
1096 #ifndef WIN32
1097             if( b_daemon )
1098                  /* Daemon mode hack.
1099                   * We prefer the dummy interface if none is specified. */
1100                 psz_module = "dummy";
1101             else
1102 #endif
1103                 msg_Info( p_libvlc, "%s",
1104                           _("Running vlc with the default interface. "
1105                             "Use 'cvlc' to use vlc without interface.") );
1106         }
1107         free( psz_interface );
1108         var_Destroy( p_libvlc, "intf" );
1109     }
1110
1111     /* Try to create the interface */
1112     int ret = intf_Create( p_libvlc, psz_module ? psz_module : "$intf" );
1113     if( ret )
1114         msg_Err( p_libvlc, "interface \"%s\" initialization failed",
1115                  psz_module ? psz_module : "default" );
1116     return ret;
1117 }
1118
1119 #if defined( ENABLE_NLS ) && (defined (__APPLE__) || defined (WIN32)) && \
1120     ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
1121 /*****************************************************************************
1122  * SetLanguage: set the interface language.
1123  *****************************************************************************
1124  * We set the LC_MESSAGES locale category for interface messages and buttons,
1125  * as well as the LC_CTYPE category for string sorting and possible wide
1126  * character support.
1127  *****************************************************************************/
1128 static void SetLanguage ( const char *psz_lang )
1129 {
1130 #ifdef __APPLE__
1131     /* I need that under Darwin, please check it doesn't disturb
1132      * other platforms. --Meuuh */
1133     setenv( "LANG", psz_lang, 1 );
1134
1135 #else
1136     /* We set LC_ALL manually because it is the only way to set
1137      * the language at runtime under eg. Windows. Beware that this
1138      * makes the environment unconsistent when libvlc is unloaded and
1139      * should probably be moved to a safer place like vlc.c. */
1140     static char psz_lcall[20];
1141     snprintf( psz_lcall, sizeof(psz_lcall), "LC_ALL=%s", psz_lang );
1142     putenv( psz_lcall );
1143 #endif
1144
1145     setlocale( LC_ALL, psz_lang );
1146 }
1147 #endif
1148
1149 /*****************************************************************************
1150  * GetFilenames: parse command line options which are not flags
1151  *****************************************************************************
1152  * Parse command line for input files as well as their associated options.
1153  * An option always follows its associated input and begins with a ":".
1154  *****************************************************************************/
1155 static void GetFilenames( libvlc_int_t *p_vlc, unsigned n,
1156                           const char *const args[] )
1157 {
1158     while( n > 0 )
1159     {
1160         /* Count the input options */
1161         unsigned i_options = 0;
1162
1163         while( args[--n][0] == ':' )
1164         {
1165             i_options++;
1166             if( n == 0 )
1167             {
1168                 msg_Warn( p_vlc, "options %s without item", args[n] );
1169                 return; /* syntax!? */
1170             }
1171         }
1172
1173         char *mrl = make_URI( args[n], NULL );
1174         if( !mrl )
1175             continue;
1176
1177         playlist_AddExt( pl_Get( p_vlc ), mrl, NULL, PLAYLIST_INSERT,
1178                 0, -1, i_options, ( i_options ? &args[n + 1] : NULL ),
1179                 VLC_INPUT_OPTION_TRUSTED, true, pl_Unlocked );
1180         free( mrl );
1181     }
1182 }
1183
1184 /*****************************************************************************
1185  * Help: print program help
1186  *****************************************************************************
1187  * Print a short inline help. Message interface is initialized at this stage.
1188  *****************************************************************************/
1189 static inline void print_help_on_full_help( void )
1190 {
1191     utf8_fprintf( stdout, "\n" );
1192     utf8_fprintf( stdout, "%s\n", _("To get exhaustive help, use '-H'.") );
1193 }
1194
1195 static const char vlc_usage[] = N_(
1196                             "Usage: %s [options] [stream] ..."
1197                             "\nYou can specify multiple streams on the commandline. They will be enqueued in the playlist."
1198                             "\nThe first item specified will be played first."
1199                             "\n"
1200                             "\nOptions-styles:"
1201                             "\n  --option  A global option that is set for the duration of the program."
1202                             "\n   -option  A single letter version of a global --option."
1203                             "\n   :option  An option that only applies to the stream directly before it"
1204                             "\n            and that overrides previous settings."
1205                             "\n"
1206                             "\nStream MRL syntax:"
1207                             "\n  [[access][/demux]://]URL[@[title][:chapter][-[title][:chapter]]] [:option=value ...]"
1208                             "\n"
1209                             "\n  Many of the global --options can also be used as MRL specific :options."
1210                             "\n  Multiple :option=value pairs can be specified."
1211                             "\n"
1212                             "\nURL syntax:"
1213                             "\n  [file://]filename              Plain media file"
1214                             "\n  http://ip:port/file            HTTP URL"
1215                             "\n  ftp://ip:port/file             FTP URL"
1216                             "\n  mms://ip:port/file             MMS URL"
1217                             "\n  screen://                      Screen capture"
1218                             "\n  [dvd://][device][@raw_device]  DVD device"
1219                             "\n  [vcd://][device]               VCD device"
1220                             "\n  [cdda://][device]              Audio CD device"
1221                             "\n  udp://[[<source address>]@[<bind address>][:<bind port>]]"
1222                             "\n                                 UDP stream sent by a streaming server"
1223                             "\n  vlc://pause:<seconds>          Special item to pause the playlist for a certain time"
1224                             "\n  vlc://quit                     Special item to quit VLC"
1225                             "\n");
1226
1227 static void Help( libvlc_int_t *p_this, char const *psz_help_name )
1228 {
1229 #ifdef WIN32
1230     ShowConsole( true );
1231 #endif
1232
1233     if( psz_help_name && !strcmp( psz_help_name, "help" ) )
1234     {
1235         utf8_fprintf( stdout, vlc_usage, "vlc" );
1236         Usage( p_this, "=help" );
1237         Usage( p_this, "=main" );
1238         print_help_on_full_help();
1239     }
1240     else if( psz_help_name && !strcmp( psz_help_name, "longhelp" ) )
1241     {
1242         utf8_fprintf( stdout, vlc_usage, "vlc" );
1243         Usage( p_this, NULL );
1244         print_help_on_full_help();
1245     }
1246     else if( psz_help_name && !strcmp( psz_help_name, "full-help" ) )
1247     {
1248         utf8_fprintf( stdout, vlc_usage, "vlc" );
1249         Usage( p_this, NULL );
1250     }
1251     else if( psz_help_name )
1252     {
1253         Usage( p_this, psz_help_name );
1254     }
1255
1256 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1257     PauseConsole();
1258 #endif
1259 }
1260
1261 /*****************************************************************************
1262  * Usage: print module usage
1263  *****************************************************************************
1264  * Print a short inline help. Message interface is initialized at this stage.
1265  *****************************************************************************/
1266 #   define COL(x)  "\033[" #x ";1m"
1267 #   define RED     COL(31)
1268 #   define GREEN   COL(32)
1269 #   define YELLOW  COL(33)
1270 #   define BLUE    COL(34)
1271 #   define MAGENTA COL(35)
1272 #   define CYAN    COL(36)
1273 #   define WHITE   COL(0)
1274 #   define GRAY    "\033[0m"
1275 static void
1276 print_help_section( const module_t *m, const module_config_t *p_item,
1277                     bool b_color, bool b_description )
1278 {
1279     if( !p_item ) return;
1280     if( b_color )
1281     {
1282         utf8_fprintf( stdout, RED"   %s:\n"GRAY,
1283                       module_gettext( m, p_item->psz_text ) );
1284         if( b_description && p_item->psz_longtext && *p_item->psz_longtext )
1285             utf8_fprintf( stdout, MAGENTA"   %s\n"GRAY,
1286                           module_gettext( m, p_item->psz_longtext ) );
1287     }
1288     else
1289     {
1290         utf8_fprintf( stdout, "   %s:\n",
1291                       module_gettext( m, p_item->psz_text ) );
1292         if( b_description && p_item->psz_longtext && *p_item->psz_longtext )
1293             utf8_fprintf( stdout, "   %s\n",
1294                           module_gettext(m, p_item->psz_longtext ) );
1295     }
1296 }
1297
1298 static void Usage( libvlc_int_t *p_this, char const *psz_search )
1299 {
1300 #define FORMAT_STRING "  %s --%s%s%s%s%s%s%s "
1301     /* short option ------'    | | | | | | |
1302      * option name ------------' | | | | | |
1303      * <bra ---------------------' | | | | |
1304      * option type or "" ----------' | | | |
1305      * ket> -------------------------' | | |
1306      * padding spaces -----------------' | |
1307      * comment --------------------------' |
1308      * comment suffix ---------------------'
1309      *
1310      * The purpose of having bra and ket is that we might i18n them as well.
1311      */
1312
1313 #define COLOR_FORMAT_STRING (WHITE"  %s --%s"YELLOW"%s%s%s%s%s%s "GRAY)
1314 #define COLOR_FORMAT_STRING_BOOL (WHITE"  %s --%s%s%s%s%s%s%s "GRAY)
1315
1316 #define LINE_START 8
1317 #define PADDING_SPACES 25
1318 #ifdef WIN32
1319 #   define OPTION_VALUE_SEP "="
1320 #else
1321 #   define OPTION_VALUE_SEP " "
1322 #endif
1323     char psz_spaces_text[PADDING_SPACES+LINE_START+1];
1324     char psz_spaces_longtext[LINE_START+3];
1325     char psz_format[sizeof(COLOR_FORMAT_STRING)];
1326     char psz_format_bool[sizeof(COLOR_FORMAT_STRING_BOOL)];
1327     char psz_buffer[10000];
1328     char psz_short[4];
1329     int i_width = ConsoleWidth() - (PADDING_SPACES+LINE_START+1);
1330     int i_width_description = i_width + PADDING_SPACES - 1;
1331     bool b_advanced    = var_InheritBool( p_this, "advanced" );
1332     bool b_description = var_InheritBool( p_this, "help-verbose" );
1333     bool b_description_hack;
1334     bool b_color       = var_InheritBool( p_this, "color" );
1335     bool b_has_advanced = false;
1336     bool b_found       = false;
1337     int  i_only_advanced = 0; /* Number of modules ignored because they
1338                                * only have advanced options */
1339     bool b_strict = psz_search && *psz_search == '=';
1340     if( b_strict ) psz_search++;
1341
1342     memset( psz_spaces_text, ' ', PADDING_SPACES+LINE_START );
1343     psz_spaces_text[PADDING_SPACES+LINE_START] = '\0';
1344     memset( psz_spaces_longtext, ' ', LINE_START+2 );
1345     psz_spaces_longtext[LINE_START+2] = '\0';
1346 #ifndef WIN32
1347     if( !isatty( 1 ) )
1348 #endif
1349         b_color = false; // don't put color control codes in a .txt file
1350
1351     if( b_color )
1352     {
1353         strcpy( psz_format, COLOR_FORMAT_STRING );
1354         strcpy( psz_format_bool, COLOR_FORMAT_STRING_BOOL );
1355     }
1356     else
1357     {
1358         strcpy( psz_format, FORMAT_STRING );
1359         strcpy( psz_format_bool, FORMAT_STRING );
1360     }
1361
1362     /* List all modules */
1363     module_t **list = module_list_get (NULL);
1364     if (!list)
1365         return;
1366
1367     /* Ugly hack to make sure that the help options always come first
1368      * (part 1) */
1369     if( !psz_search )
1370         Usage( p_this, "help" );
1371
1372     /* Enumerate the config for each module */
1373     for (size_t i = 0; list[i]; i++)
1374     {
1375         bool b_help_module;
1376         module_t *p_parser = list[i];
1377         module_config_t *p_item = NULL;
1378         module_config_t *p_section = NULL;
1379         module_config_t *p_end = p_parser->p_config + p_parser->confsize;
1380
1381         if( psz_search &&
1382             ( b_strict ? strcmp( psz_search, p_parser->psz_object_name )
1383                        : !strstr( p_parser->psz_object_name, psz_search ) ) )
1384         {
1385             char *const *pp_shortcuts = p_parser->pp_shortcuts;
1386             unsigned i;
1387             for( i = 0; i < p_parser->i_shortcuts; i++ )
1388             {
1389                 if( b_strict ? !strcmp( psz_search, pp_shortcuts[i] )
1390                              : !!strstr( pp_shortcuts[i], psz_search ) )
1391                     break;
1392             }
1393             if( i == p_parser->i_shortcuts )
1394                 continue;
1395         }
1396
1397         /* Ignore modules without config options */
1398         if( !p_parser->i_config_items )
1399         {
1400             continue;
1401         }
1402
1403         b_help_module = !strcmp( "help", p_parser->psz_object_name );
1404         /* Ugly hack to make sure that the help options always come first
1405          * (part 2) */
1406         if( !psz_search && b_help_module )
1407             continue;
1408
1409         /* Ignore modules with only advanced config options if requested */
1410         if( !b_advanced )
1411         {
1412             for( p_item = p_parser->p_config;
1413                  p_item < p_end;
1414                  p_item++ )
1415             {
1416                 if( (p_item->i_type & CONFIG_ITEM) &&
1417                     !p_item->b_advanced && !p_item->b_removed ) break;
1418             }
1419
1420             if( p_item == p_end )
1421             {
1422                 i_only_advanced++;
1423                 continue;
1424             }
1425         }
1426
1427         b_found = true;
1428
1429         /* Print name of module */
1430         if( strcmp( "main", p_parser->psz_object_name ) )
1431         {
1432             if( b_color )
1433                 utf8_fprintf( stdout, "\n " GREEN "%s" GRAY " (%s)\n",
1434                               module_gettext( p_parser, p_parser->psz_longname ),
1435                               p_parser->psz_object_name );
1436             else
1437                 utf8_fprintf( stdout, "\n %s\n",
1438                               module_gettext(p_parser, p_parser->psz_longname ) );
1439         }
1440         if( p_parser->psz_help )
1441         {
1442             if( b_color )
1443                 utf8_fprintf( stdout, CYAN" %s\n"GRAY,
1444                               module_gettext( p_parser, p_parser->psz_help ) );
1445             else
1446                 utf8_fprintf( stdout, " %s\n",
1447                               module_gettext( p_parser, p_parser->psz_help ) );
1448         }
1449
1450         /* Print module options */
1451         for( p_item = p_parser->p_config;
1452              p_item < p_end;
1453              p_item++ )
1454         {
1455             char *psz_text, *psz_spaces = psz_spaces_text;
1456             const char *psz_bra = NULL, *psz_type = NULL, *psz_ket = NULL;
1457             const char *psz_suf = "", *psz_prefix = NULL;
1458             signed int i;
1459             size_t i_cur_width;
1460
1461             /* Skip removed options */
1462             if( p_item->b_removed )
1463             {
1464                 continue;
1465             }
1466             /* Skip advanced options if requested */
1467             if( p_item->b_advanced && !b_advanced )
1468             {
1469                 b_has_advanced = true;
1470                 continue;
1471             }
1472
1473             switch( p_item->i_type )
1474             {
1475             case CONFIG_HINT_CATEGORY:
1476             case CONFIG_HINT_USAGE:
1477                 if( !strcmp( "main", p_parser->psz_object_name ) )
1478                 {
1479                     if( b_color )
1480                         utf8_fprintf( stdout, GREEN "\n %s\n" GRAY,
1481                                       module_gettext( p_parser, p_item->psz_text ) );
1482                     else
1483                         utf8_fprintf( stdout, "\n %s\n",
1484                                       module_gettext( p_parser, p_item->psz_text ) );
1485                 }
1486                 if( b_description && p_item->psz_longtext
1487                  && *p_item->psz_longtext )
1488                 {
1489                     if( b_color )
1490                         utf8_fprintf( stdout, CYAN " %s\n" GRAY,
1491                                       module_gettext( p_parser, p_item->psz_longtext ) );
1492                     else
1493                         utf8_fprintf( stdout, " %s\n",
1494                                       module_gettext( p_parser, p_item->psz_longtext ) );
1495                 }
1496                 break;
1497
1498             case CONFIG_HINT_SUBCATEGORY:
1499                 if( strcmp( "main", p_parser->psz_object_name ) )
1500                     break;
1501             case CONFIG_SECTION:
1502                 p_section = p_item;
1503                 break;
1504
1505             case CONFIG_ITEM_STRING:
1506             case CONFIG_ITEM_FILE:
1507             case CONFIG_ITEM_DIRECTORY:
1508             case CONFIG_ITEM_MODULE: /* We could also have "=<" here */
1509             case CONFIG_ITEM_MODULE_CAT:
1510             case CONFIG_ITEM_MODULE_LIST:
1511             case CONFIG_ITEM_MODULE_LIST_CAT:
1512             case CONFIG_ITEM_FONT:
1513             case CONFIG_ITEM_PASSWORD:
1514                 print_help_section( p_parser, p_section, b_color,
1515                                     b_description );
1516                 p_section = NULL;
1517                 psz_bra = OPTION_VALUE_SEP "<";
1518                 psz_type = _("string");
1519                 psz_ket = ">";
1520
1521                 if( p_item->ppsz_list )
1522                 {
1523                     psz_bra = OPTION_VALUE_SEP "{";
1524                     psz_type = psz_buffer;
1525                     psz_buffer[0] = '\0';
1526                     for( i = 0; p_item->ppsz_list[i]; i++ )
1527                     {
1528                         if( i ) strcat( psz_buffer, "," );
1529                         strcat( psz_buffer, p_item->ppsz_list[i] );
1530                     }
1531                     psz_ket = "}";
1532                 }
1533                 break;
1534             case CONFIG_ITEM_INTEGER:
1535             case CONFIG_ITEM_KEY: /* FIXME: do something a bit more clever */
1536                 print_help_section( p_parser, p_section, b_color,
1537                                     b_description );
1538                 p_section = NULL;
1539                 psz_bra = OPTION_VALUE_SEP "<";
1540                 psz_type = _("integer");
1541                 psz_ket = ">";
1542
1543                 if( p_item->min.i || p_item->max.i )
1544                 {
1545                     sprintf( psz_buffer, "%s [%"PRId64" .. %"PRId64"]",
1546                              psz_type, p_item->min.i, p_item->max.i );
1547                     psz_type = psz_buffer;
1548                 }
1549
1550                 if( p_item->i_list )
1551                 {
1552                     psz_bra = OPTION_VALUE_SEP "{";
1553                     psz_type = psz_buffer;
1554                     psz_buffer[0] = '\0';
1555                     for( i = 0; p_item->ppsz_list_text[i]; i++ )
1556                     {
1557                         if( i ) strcat( psz_buffer, ", " );
1558                         sprintf( psz_buffer + strlen(psz_buffer), "%i (%s)",
1559                                  p_item->pi_list[i],
1560                                  module_gettext( p_parser, p_item->ppsz_list_text[i] ) );
1561                     }
1562                     psz_ket = "}";
1563                 }
1564                 break;
1565             case CONFIG_ITEM_FLOAT:
1566                 print_help_section( p_parser, p_section, b_color,
1567                                     b_description );
1568                 p_section = NULL;
1569                 psz_bra = OPTION_VALUE_SEP "<";
1570                 psz_type = _("float");
1571                 psz_ket = ">";
1572                 if( p_item->min.f || p_item->max.f )
1573                 {
1574                     sprintf( psz_buffer, "%s [%f .. %f]", psz_type,
1575                              p_item->min.f, p_item->max.f );
1576                     psz_type = psz_buffer;
1577                 }
1578                 break;
1579             case CONFIG_ITEM_BOOL:
1580                 print_help_section( p_parser, p_section, b_color,
1581                                     b_description );
1582                 p_section = NULL;
1583                 psz_bra = ""; psz_type = ""; psz_ket = "";
1584                 if( !b_help_module )
1585                 {
1586                     psz_suf = p_item->value.i ? _(" (default enabled)") :
1587                                                 _(" (default disabled)");
1588                 }
1589                 break;
1590             }
1591
1592             if( !psz_type )
1593             {
1594                 continue;
1595             }
1596
1597             /* Add short option if any */
1598             if( p_item->i_short )
1599             {
1600                 sprintf( psz_short, "-%c,", p_item->i_short );
1601             }
1602             else
1603             {
1604                 strcpy( psz_short, "   " );
1605             }
1606
1607             i = PADDING_SPACES - strlen( p_item->psz_name )
1608                  - strlen( psz_bra ) - strlen( psz_type )
1609                  - strlen( psz_ket ) - 1;
1610
1611             if( p_item->i_type == CONFIG_ITEM_BOOL && !b_help_module )
1612             {
1613                 psz_prefix =  ", --no-";
1614                 i -= strlen( p_item->psz_name ) + strlen( psz_prefix );
1615             }
1616
1617             if( i < 0 )
1618             {
1619                 psz_spaces[0] = '\n';
1620                 i = 0;
1621             }
1622             else
1623             {
1624                 psz_spaces[i] = '\0';
1625             }
1626
1627             if( p_item->i_type == CONFIG_ITEM_BOOL && !b_help_module )
1628             {
1629                 utf8_fprintf( stdout, psz_format_bool, psz_short,
1630                               p_item->psz_name, psz_prefix, p_item->psz_name,
1631                               psz_bra, psz_type, psz_ket, psz_spaces );
1632             }
1633             else
1634             {
1635                 utf8_fprintf( stdout, psz_format, psz_short, p_item->psz_name,
1636                          "", "", psz_bra, psz_type, psz_ket, psz_spaces );
1637             }
1638
1639             psz_spaces[i] = ' ';
1640
1641             /* We wrap the rest of the output */
1642             sprintf( psz_buffer, "%s%s", module_gettext( p_parser, p_item->psz_text ),
1643                      psz_suf );
1644             b_description_hack = b_description;
1645
1646  description:
1647             psz_text = psz_buffer;
1648             i_cur_width = b_description && !b_description_hack
1649                           ? i_width_description
1650                           : i_width;
1651             while( *psz_text )
1652             {
1653                 char *psz_parser, *psz_word;
1654                 size_t i_end = strlen( psz_text );
1655
1656                 /* If the remaining text fits in a line, print it. */
1657                 if( i_end <= i_cur_width )
1658                 {
1659                     if( b_color )
1660                     {
1661                         if( !b_description || b_description_hack )
1662                             utf8_fprintf( stdout, BLUE"%s\n"GRAY, psz_text );
1663                         else
1664                             utf8_fprintf( stdout, "%s\n", psz_text );
1665                     }
1666                     else
1667                     {
1668                         utf8_fprintf( stdout, "%s\n", psz_text );
1669                     }
1670                     break;
1671                 }
1672
1673                 /* Otherwise, eat as many words as possible */
1674                 psz_parser = psz_text;
1675                 do
1676                 {
1677                     psz_word = psz_parser;
1678                     psz_parser = strchr( psz_word, ' ' );
1679                     /* If no space was found, we reached the end of the text
1680                      * block; otherwise, we skip the space we just found. */
1681                     psz_parser = psz_parser ? psz_parser + 1
1682                                             : psz_text + i_end;
1683
1684                 } while( (size_t)(psz_parser - psz_text) <= i_cur_width );
1685
1686                 /* We cut a word in one of these cases:
1687                  *  - it's the only word in the line and it's too long.
1688                  *  - we used less than 80% of the width and the word we are
1689                  *    going to wrap is longer than 40% of the width, and even
1690                  *    if the word would have fit in the next line. */
1691                 if( psz_word == psz_text
1692              || ( (size_t)(psz_word - psz_text) < 80 * i_cur_width / 100
1693              && (size_t)(psz_parser - psz_word) > 40 * i_cur_width / 100 ) )
1694                 {
1695                     char c = psz_text[i_cur_width];
1696                     psz_text[i_cur_width] = '\0';
1697                     if( b_color )
1698                     {
1699                         if( !b_description || b_description_hack )
1700                             utf8_fprintf( stdout, BLUE"%s\n%s"GRAY,
1701                                           psz_text, psz_spaces );
1702                         else
1703                             utf8_fprintf( stdout, "%s\n%s",
1704                                           psz_text, psz_spaces );
1705                     }
1706                     else
1707                     {
1708                         utf8_fprintf( stdout, "%s\n%s", psz_text, psz_spaces );
1709                     }
1710                     psz_text += i_cur_width;
1711                     psz_text[0] = c;
1712                 }
1713                 else
1714                 {
1715                     psz_word[-1] = '\0';
1716                     if( b_color )
1717                     {
1718                         if( !b_description || b_description_hack )
1719                             utf8_fprintf( stdout, BLUE"%s\n%s"GRAY,
1720                                           psz_text, psz_spaces );
1721                         else
1722                             utf8_fprintf( stdout, "%s\n%s",
1723                                           psz_text, psz_spaces );
1724                     }
1725                     else
1726                     {
1727                         utf8_fprintf( stdout, "%s\n%s", psz_text, psz_spaces );
1728                     }
1729                     psz_text = psz_word;
1730                 }
1731             }
1732
1733             if( b_description_hack && p_item->psz_longtext
1734              && *p_item->psz_longtext )
1735             {
1736                 sprintf( psz_buffer, "%s%s",
1737                          module_gettext( p_parser, p_item->psz_longtext ),
1738                          psz_suf );
1739                 b_description_hack = false;
1740                 psz_spaces = psz_spaces_longtext;
1741                 utf8_fprintf( stdout, "%s", psz_spaces );
1742                 goto description;
1743             }
1744         }
1745     }
1746
1747     if( b_has_advanced )
1748     {
1749         if( b_color )
1750             utf8_fprintf( stdout, "\n" WHITE "%s" GRAY " %s\n", _( "Note:" ),
1751            _( "add --advanced to your command line to see advanced options."));
1752         else
1753             utf8_fprintf( stdout, "\n%s %s\n", _( "Note:" ),
1754            _( "add --advanced to your command line to see advanced options."));
1755     }
1756
1757     if( i_only_advanced > 0 )
1758     {
1759         if( b_color )
1760         {
1761             utf8_fprintf( stdout, "\n" WHITE "%s" GRAY " ", _( "Note:" ) );
1762             utf8_fprintf( stdout, _( "%d module(s) were not displayed because they only have advanced options.\n" ), i_only_advanced );
1763         }
1764         else
1765         {
1766             utf8_fprintf( stdout, "\n%s ", _( "Note:" ) );
1767             utf8_fprintf( stdout, _( "%d module(s) were not displayed because they only have advanced options.\n" ), i_only_advanced );
1768         }
1769     }
1770     else if( !b_found )
1771     {
1772         if( b_color )
1773             utf8_fprintf( stdout, "\n" WHITE "%s" GRAY "\n",
1774                        _( "No matching module found. Use --list or " \
1775                           "--list-verbose to list available modules." ) );
1776         else
1777             utf8_fprintf( stdout, "\n%s\n",
1778                        _( "No matching module found. Use --list or " \
1779                           "--list-verbose to list available modules." ) );
1780     }
1781
1782     /* Release the module list */
1783     module_list_free (list);
1784 }
1785
1786 /*****************************************************************************
1787  * ListModules: list the available modules with their description
1788  *****************************************************************************
1789  * Print a list of all available modules (builtins and plugins) and a short
1790  * description for each one.
1791  *****************************************************************************/
1792 static void ListModules( libvlc_int_t *p_this, bool b_verbose )
1793 {
1794     module_t *p_parser;
1795
1796     bool b_color = var_InheritBool( p_this, "color" );
1797
1798 #ifdef WIN32
1799     ShowConsole( true );
1800     b_color = false; // don't put color control codes in a .txt file
1801 #else
1802     if( !isatty( 1 ) )
1803         b_color = false;
1804 #endif
1805
1806     /* List all modules */
1807     module_t **list = module_list_get (NULL);
1808
1809     /* Enumerate each module */
1810     for (size_t j = 0; (p_parser = list[j]) != NULL; j++)
1811     {
1812         if( b_color )
1813             utf8_fprintf( stdout, GREEN"  %-22s "WHITE"%s\n"GRAY,
1814                           p_parser->psz_object_name,
1815                           module_gettext( p_parser, p_parser->psz_longname ) );
1816         else
1817             utf8_fprintf( stdout, "  %-22s %s\n",
1818                           p_parser->psz_object_name,
1819                           module_gettext( p_parser, p_parser->psz_longname ) );
1820
1821         if( b_verbose )
1822         {
1823             char *const *pp_shortcuts = p_parser->pp_shortcuts;
1824             for( unsigned i = 0; i < p_parser->i_shortcuts; i++ )
1825             {
1826                 if( strcmp( pp_shortcuts[i], p_parser->psz_object_name ) )
1827                 {
1828                     if( b_color )
1829                         utf8_fprintf( stdout, CYAN"   s %s\n"GRAY,
1830                                       pp_shortcuts[i] );
1831                     else
1832                         utf8_fprintf( stdout, "   s %s\n",
1833                                       pp_shortcuts[i] );
1834                 }
1835             }
1836             if( p_parser->psz_capability )
1837             {
1838                 if( b_color )
1839                     utf8_fprintf( stdout, MAGENTA"   c %s (%d)\n"GRAY,
1840                                   p_parser->psz_capability,
1841                                   p_parser->i_score );
1842                 else
1843                     utf8_fprintf( stdout, "   c %s (%d)\n",
1844                                   p_parser->psz_capability,
1845                                   p_parser->i_score );
1846             }
1847         }
1848     }
1849     module_list_free (list);
1850
1851 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1852     PauseConsole();
1853 #endif
1854 }
1855
1856 /*****************************************************************************
1857  * Version: print complete program version
1858  *****************************************************************************
1859  * Print complete program version and build number.
1860  *****************************************************************************/
1861 static void Version( void )
1862 {
1863 #ifdef WIN32
1864     ShowConsole( true );
1865 #endif
1866
1867     utf8_fprintf( stdout, _("VLC version %s (%s)\n"), VLC_Version(),
1868                   psz_vlc_changeset );
1869     utf8_fprintf( stdout, _("Compiled by %s on %s (%s)\n"),
1870              VLC_CompileBy(), VLC_CompileHost(), __DATE__" "__TIME__ );
1871     utf8_fprintf( stdout, _("Compiler: %s\n"), VLC_Compiler() );
1872     utf8_fprintf( stdout, "%s", LICENSE_MSG );
1873
1874 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1875     PauseConsole();
1876 #endif
1877 }
1878
1879 /*****************************************************************************
1880  * ShowConsole: On Win32, create an output console for debug messages
1881  *****************************************************************************
1882  * This function is useful only on Win32.
1883  *****************************************************************************/
1884 #ifdef WIN32 /*  */
1885 static void ShowConsole( bool b_dofile )
1886 {
1887 #   ifndef UNDER_CE
1888     FILE *f_help = NULL;
1889
1890     if( getenv( "PWD" ) && getenv( "PS1" ) ) return; /* cygwin shell */
1891
1892     AllocConsole();
1893     /* Use the ANSI code page (e.g. Windows-1252) as expected by the LibVLC
1894      * Unicode/locale subsystem. By default, we have the obsolecent OEM code
1895      * page (e.g. CP437 or CP850). */
1896     SetConsoleOutputCP (GetACP ());
1897     SetConsoleTitle ("VLC media player version "PACKAGE_VERSION);
1898
1899     freopen( "CONOUT$", "w", stderr );
1900     freopen( "CONIN$", "r", stdin );
1901
1902     if( b_dofile && (f_help = fopen( "vlc-help.txt", "wt" )) )
1903     {
1904         fclose( f_help );
1905         freopen( "vlc-help.txt", "wt", stdout );
1906         utf8_fprintf( stderr, _("\nDumped content to vlc-help.txt file.\n") );
1907     }
1908     else freopen( "CONOUT$", "w", stdout );
1909
1910 #   endif
1911 }
1912 #endif
1913
1914 /*****************************************************************************
1915  * PauseConsole: On Win32, wait for a key press before closing the console
1916  *****************************************************************************
1917  * This function is useful only on Win32.
1918  *****************************************************************************/
1919 #ifdef WIN32 /*  */
1920 static void PauseConsole( void )
1921 {
1922 #   ifndef UNDER_CE
1923
1924     if( getenv( "PWD" ) && getenv( "PS1" ) ) return; /* cygwin shell */
1925
1926     utf8_fprintf( stderr, _("\nPress the RETURN key to continue...\n") );
1927     getchar();
1928     fclose( stdout );
1929
1930 #   endif
1931 }
1932 #endif
1933
1934 /*****************************************************************************
1935  * ConsoleWidth: Return the console width in characters
1936  *****************************************************************************
1937  * We use the stty shell command to get the console width; if this fails or
1938  * if the width is less than 80, we default to 80.
1939  *****************************************************************************/
1940 static int ConsoleWidth( void )
1941 {
1942     unsigned i_width = 80;
1943
1944 #ifndef WIN32
1945     FILE *file = popen( "stty size 2>/dev/null", "r" );
1946     if (file != NULL)
1947     {
1948         if (fscanf (file, "%*u %u", &i_width) <= 0)
1949             i_width = 80;
1950         pclose( file );
1951     }
1952 #elif !defined (UNDER_CE)
1953     CONSOLE_SCREEN_BUFFER_INFO buf;
1954
1955     if (GetConsoleScreenBufferInfo (GetStdHandle (STD_OUTPUT_HANDLE), &buf))
1956         i_width = buf.dwSize.X;
1957 #endif
1958
1959     return i_width;
1960 }