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