]> git.sesse.net Git - vlc/blob - src/libvlc.c
2f4a6a9bc47361674daeedf609d4bf76badd5866
[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     /* vout window provider */
765     var_Create( p_libvlc, "window", VLC_VAR_STRING );
766
767     /* Initialize playlist and get commandline files */
768     p_playlist = playlist_Create( VLC_OBJECT(p_libvlc) );
769     if( !p_playlist )
770     {
771         msg_Err( p_libvlc, "playlist initialization failed" );
772         if( priv->p_memcpy_module != NULL )
773         {
774             module_unneed( p_libvlc, priv->p_memcpy_module );
775         }
776         module_EndBank( p_libvlc, true );
777         return VLC_EGENERIC;
778     }
779
780     /* System specific configuration */
781     system_Configure( p_libvlc, i_argc - vlc_optind, ppsz_argv + vlc_optind );
782
783 #if defined(MEDIA_LIBRARY)
784     /* Get the ML */
785     if( var_GetBool( p_libvlc, "load-media-library-on-startup" ) == true )
786     {
787         priv->p_ml = ml_Create( VLC_OBJECT( p_libvlc ), NULL );
788         if( !priv->p_ml )
789         {
790             msg_Err( p_libvlc, "ML initialization failed" );
791             return VLC_EGENERIC;
792         }
793     }
794     else
795     {
796         priv->p_ml = NULL;
797     }
798 #endif
799
800     /* Add service discovery modules */
801     psz_modules = var_InheritString( p_libvlc, "services-discovery" );
802     if( psz_modules )
803     {
804         char *p = psz_modules, *m;
805         while( ( m = strsep( &p, " :," ) ) != NULL )
806             playlist_ServicesDiscoveryAdd( p_playlist, m );
807         free( psz_modules );
808     }
809
810 #ifdef ENABLE_VLM
811     /* Initialize VLM if vlm-conf is specified */
812     psz_parser = var_CreateGetNonEmptyString( p_libvlc, "vlm-conf" );
813     if( psz_parser )
814     {
815         priv->p_vlm = vlm_New( p_libvlc );
816         if( !priv->p_vlm )
817             msg_Err( p_libvlc, "VLM initialization failed" );
818     }
819     free( psz_parser );
820 #endif
821
822     /*
823      * Load background interfaces
824      */
825     psz_modules = var_CreateGetNonEmptyString( p_libvlc, "extraintf" );
826     psz_control = var_CreateGetNonEmptyString( p_libvlc, "control" );
827
828     if( psz_modules && psz_control )
829     {
830         char* psz_tmp;
831         if( asprintf( &psz_tmp, "%s:%s", psz_modules, psz_control ) != -1 )
832         {
833             free( psz_modules );
834             psz_modules = psz_tmp;
835         }
836     }
837     else if( psz_control )
838     {
839         free( psz_modules );
840         psz_modules = strdup( psz_control );
841     }
842
843     psz_parser = psz_modules;
844     while ( psz_parser && *psz_parser )
845     {
846         char *psz_module, *psz_temp;
847         psz_module = psz_parser;
848         psz_parser = strchr( psz_module, ':' );
849         if ( psz_parser )
850         {
851             *psz_parser = '\0';
852             psz_parser++;
853         }
854         if( asprintf( &psz_temp, "%s,none", psz_module ) != -1)
855         {
856             intf_Create( p_libvlc, psz_temp );
857             free( psz_temp );
858         }
859     }
860     free( psz_modules );
861     free( psz_control );
862
863     /*
864      * Always load the hotkeys interface if it exists
865      */
866     intf_Create( p_libvlc, "hotkeys,none" );
867
868 #ifdef HAVE_DBUS
869     /* loads dbus control interface if in one-instance mode
870      * we do it only when playlist exists, because dbus module needs it */
871     if( var_InheritBool( p_libvlc, "one-instance" )
872      || ( var_InheritBool( p_libvlc, "one-instance-when-started-from-file" )
873        && var_InheritBool( p_libvlc, "started-from-file" ) ) )
874         intf_Create( p_libvlc, "dbus,none" );
875
876 # if !defined (HAVE_MAEMO)
877     /* Prevents the power management daemon from suspending the system
878      * when VLC is active */
879     if( var_InheritBool( p_libvlc, "inhibit" ) > 0 )
880         intf_Create( p_libvlc, "inhibit,none" );
881 # endif
882 #endif
883
884     if( var_InheritBool( p_libvlc, "file-logging" ) &&
885         !var_InheritBool( p_libvlc, "syslog" ) )
886     {
887         intf_Create( p_libvlc, "logger,none" );
888     }
889 #ifdef HAVE_SYSLOG_H
890     if( var_InheritBool( p_libvlc, "syslog" ) )
891     {
892         char *logmode = var_CreateGetNonEmptyString( p_libvlc, "logmode" );
893         var_SetString( p_libvlc, "logmode", "syslog" );
894         intf_Create( p_libvlc, "logger,none" );
895
896         if( logmode )
897         {
898             var_SetString( p_libvlc, "logmode", logmode );
899             free( logmode );
900         }
901         var_Destroy( p_libvlc, "logmode" );
902     }
903 #endif
904
905     if( var_InheritBool( p_libvlc, "network-synchronisation") )
906     {
907         intf_Create( p_libvlc, "netsync,none" );
908     }
909
910 #ifdef WIN32
911     if( var_InheritBool( p_libvlc, "prefer-system-codecs") )
912     {
913         char *psz_codecs = var_CreateGetNonEmptyString( p_libvlc, "codec" );
914         if( psz_codecs )
915         {
916             char *psz_morecodecs;
917             if( asprintf(&psz_morecodecs, "%s,dmo,quicktime", psz_codecs) != -1 )
918             {
919                 var_SetString( p_libvlc, "codec", psz_morecodecs);
920                 free( psz_morecodecs );
921             }
922             free( psz_codecs );
923         }
924         else
925             var_SetString( p_libvlc, "codec", "dmo,quicktime");
926     }
927 #endif
928
929 #ifdef __APPLE__
930     var_Create( p_libvlc, "drawable-view-top", VLC_VAR_INTEGER );
931     var_Create( p_libvlc, "drawable-view-left", VLC_VAR_INTEGER );
932     var_Create( p_libvlc, "drawable-view-bottom", VLC_VAR_INTEGER );
933     var_Create( p_libvlc, "drawable-view-right", VLC_VAR_INTEGER );
934     var_Create( p_libvlc, "drawable-clip-top", VLC_VAR_INTEGER );
935     var_Create( p_libvlc, "drawable-clip-left", VLC_VAR_INTEGER );
936     var_Create( p_libvlc, "drawable-clip-bottom", VLC_VAR_INTEGER );
937     var_Create( p_libvlc, "drawable-clip-right", VLC_VAR_INTEGER );
938 #endif
939 #ifdef WIN32
940     var_Create( p_libvlc, "drawable-hwnd", VLC_VAR_ADDRESS );
941 #endif
942
943     /*
944      * Get input filenames given as commandline arguments.
945      * We assume that the remaining parameters are filenames
946      * and their input options.
947      */
948     GetFilenames( p_libvlc, i_argc - vlc_optind, ppsz_argv + vlc_optind );
949
950     /*
951      * Get --open argument
952      */
953     psz_val = var_InheritString( p_libvlc, "open" );
954     if ( psz_val != NULL )
955     {
956         playlist_AddExt( p_playlist, psz_val, NULL, PLAYLIST_INSERT, 0,
957                          -1, 0, NULL, 0, true, pl_Unlocked );
958         free( psz_val );
959     }
960
961     return VLC_SUCCESS;
962 }
963
964 /**
965  * Cleanup a libvlc instance. The instance is not completely deallocated
966  * \param p_libvlc the instance to clean
967  */
968 void libvlc_InternalCleanup( libvlc_int_t *p_libvlc )
969 {
970     libvlc_priv_t *priv = libvlc_priv (p_libvlc);
971     playlist_t    *p_playlist = libvlc_priv (p_libvlc)->p_playlist;
972
973     /* Deactivate the playlist */
974     msg_Dbg( p_libvlc, "deactivating the playlist" );
975     pl_Deactivate( p_libvlc );
976
977     /* Remove all services discovery */
978     msg_Dbg( p_libvlc, "removing all services discovery tasks" );
979     playlist_ServicesDiscoveryKillAll( p_playlist );
980
981     /* Ask the interfaces to stop and destroy them */
982     msg_Dbg( p_libvlc, "removing all interfaces" );
983     libvlc_Quit( p_libvlc );
984     intf_DestroyAll( p_libvlc );
985
986 #ifdef ENABLE_VLM
987     /* Destroy VLM if created in libvlc_InternalInit */
988     if( priv->p_vlm )
989     {
990         vlm_Delete( priv->p_vlm );
991     }
992 #endif
993
994     /* Free playlist now, all threads are gone */
995     playlist_Destroy( p_playlist );
996
997 #if defined(MEDIA_LIBRARY)
998     media_library_t* p_ml = priv->p_ml;
999     if( p_ml )
1000     {
1001         ml_Destroy( VLC_OBJECT( p_ml ) );
1002         vlc_object_release( p_ml );
1003         libvlc_priv(p_playlist->p_libvlc)->p_ml = NULL;
1004     }
1005 #endif
1006
1007     stats_TimersDumpAll( p_libvlc );
1008     stats_TimersCleanAll( p_libvlc );
1009
1010     msg_Dbg( p_libvlc, "removing stats" );
1011
1012 #ifndef WIN32
1013     char* psz_pidfile = NULL;
1014
1015     if( b_daemon )
1016     {
1017         psz_pidfile = var_CreateGetNonEmptyString( p_libvlc, "pidfile" );
1018         if( psz_pidfile != NULL )
1019         {
1020             msg_Dbg( p_libvlc, "removing pid file %s", psz_pidfile );
1021             if( unlink( psz_pidfile ) == -1 )
1022             {
1023                 msg_Dbg( p_libvlc, "removing pid file %s: %m",
1024                         psz_pidfile );
1025             }
1026         }
1027         free( psz_pidfile );
1028     }
1029 #endif
1030
1031     if( priv->p_memcpy_module )
1032     {
1033         module_unneed( p_libvlc, priv->p_memcpy_module );
1034         priv->p_memcpy_module = NULL;
1035     }
1036
1037     /* Free module bank. It is refcounted, so we call this each time  */
1038     module_EndBank( p_libvlc, true );
1039
1040     vlc_DeinitActions( p_libvlc );
1041 }
1042
1043 /**
1044  * Destroy everything.
1045  * This function requests the running threads to finish, waits for their
1046  * termination, and destroys their structure.
1047  * It stops the thread systems: no instance can run after this has run
1048  * \param p_libvlc the instance to destroy
1049  */
1050 void libvlc_InternalDestroy( libvlc_int_t *p_libvlc )
1051 {
1052     libvlc_priv_t *priv = libvlc_priv( p_libvlc );
1053
1054     vlc_mutex_lock( &global_lock );
1055     i_instances--;
1056
1057     if( i_instances == 0 )
1058     {
1059         /* System specific cleaning code */
1060         system_End( p_libvlc );
1061     }
1062     vlc_mutex_unlock( &global_lock );
1063
1064     msg_Destroy (priv->msg_bank);
1065
1066     /* Destroy mutexes */
1067     vlc_ExitDestroy( &priv->exit );
1068     vlc_mutex_destroy( &priv->timer_lock );
1069     vlc_mutex_destroy( &priv->ml_lock );
1070
1071 #ifndef NDEBUG /* Hack to dump leaked objects tree */
1072     if( vlc_internals( p_libvlc )->i_refcount > 1 )
1073         while( vlc_internals( p_libvlc )->i_refcount > 0 )
1074             vlc_object_release( p_libvlc );
1075 #endif
1076
1077     assert( vlc_internals( p_libvlc )->i_refcount == 1 );
1078     vlc_object_release( p_libvlc );
1079 }
1080
1081 /**
1082  * Add an interface plugin and run it
1083  */
1084 int libvlc_InternalAddIntf( libvlc_int_t *p_libvlc, char const *psz_module )
1085 {
1086     if( !p_libvlc )
1087         return VLC_EGENERIC;
1088
1089     if( !psz_module ) /* requesting the default interface */
1090     {
1091         char *psz_interface = var_CreateGetNonEmptyString( p_libvlc, "intf" );
1092         if( !psz_interface ) /* "intf" has not been set */
1093         {
1094 #ifndef WIN32
1095             if( b_daemon )
1096                  /* Daemon mode hack.
1097                   * We prefer the dummy interface if none is specified. */
1098                 psz_module = "dummy";
1099             else
1100 #endif
1101                 msg_Info( p_libvlc, "%s",
1102                           _("Running vlc with the default interface. "
1103                             "Use 'cvlc' to use vlc without interface.") );
1104         }
1105         free( psz_interface );
1106         var_Destroy( p_libvlc, "intf" );
1107     }
1108
1109     /* Try to create the interface */
1110     int ret = intf_Create( p_libvlc, psz_module ? psz_module : "$intf" );
1111     if( ret )
1112         msg_Err( p_libvlc, "interface \"%s\" initialization failed",
1113                  psz_module ? psz_module : "default" );
1114     return ret;
1115 }
1116
1117 #if defined( ENABLE_NLS ) && (defined (__APPLE__) || defined (WIN32)) && \
1118     ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
1119 /*****************************************************************************
1120  * SetLanguage: set the interface language.
1121  *****************************************************************************
1122  * We set the LC_MESSAGES locale category for interface messages and buttons,
1123  * as well as the LC_CTYPE category for string sorting and possible wide
1124  * character support.
1125  *****************************************************************************/
1126 static void SetLanguage ( const char *psz_lang )
1127 {
1128 #ifdef __APPLE__
1129     /* I need that under Darwin, please check it doesn't disturb
1130      * other platforms. --Meuuh */
1131     setenv( "LANG", psz_lang, 1 );
1132
1133 #else
1134     /* We set LC_ALL manually because it is the only way to set
1135      * the language at runtime under eg. Windows. Beware that this
1136      * makes the environment unconsistent when libvlc is unloaded and
1137      * should probably be moved to a safer place like vlc.c. */
1138     static char psz_lcall[20];
1139     snprintf( psz_lcall, sizeof(psz_lcall), "LC_ALL=%s", psz_lang );
1140     putenv( psz_lcall );
1141 #endif
1142
1143     setlocale( LC_ALL, psz_lang );
1144 }
1145 #endif
1146
1147 /*****************************************************************************
1148  * GetFilenames: parse command line options which are not flags
1149  *****************************************************************************
1150  * Parse command line for input files as well as their associated options.
1151  * An option always follows its associated input and begins with a ":".
1152  *****************************************************************************/
1153 static void GetFilenames( libvlc_int_t *p_vlc, unsigned n,
1154                           const char *const args[] )
1155 {
1156     while( n > 0 )
1157     {
1158         /* Count the input options */
1159         unsigned i_options = 0;
1160
1161         while( args[--n][0] == ':' )
1162         {
1163             i_options++;
1164             if( n == 0 )
1165             {
1166                 msg_Warn( p_vlc, "options %s without item", args[n] );
1167                 return; /* syntax!? */
1168             }
1169         }
1170
1171         char *mrl = make_URI( args[n], NULL );
1172         if( !mrl )
1173             continue;
1174
1175         playlist_AddExt( pl_Get( p_vlc ), mrl, NULL, PLAYLIST_INSERT,
1176                 0, -1, i_options, ( i_options ? &args[n + 1] : NULL ),
1177                 VLC_INPUT_OPTION_TRUSTED, true, pl_Unlocked );
1178         free( mrl );
1179     }
1180 }
1181
1182 /*****************************************************************************
1183  * Help: print program help
1184  *****************************************************************************
1185  * Print a short inline help. Message interface is initialized at this stage.
1186  *****************************************************************************/
1187 static inline void print_help_on_full_help( void )
1188 {
1189     utf8_fprintf( stdout, "\n" );
1190     utf8_fprintf( stdout, "%s\n", _("To get exhaustive help, use '-H'.") );
1191 }
1192
1193 static const char vlc_usage[] = N_(
1194                             "Usage: %s [options] [stream] ..."
1195                             "\nYou can specify multiple streams on the commandline. They will be enqueued in the playlist."
1196                             "\nThe first item specified will be played first."
1197                             "\n"
1198                             "\nOptions-styles:"
1199                             "\n  --option  A global option that is set for the duration of the program."
1200                             "\n   -option  A single letter version of a global --option."
1201                             "\n   :option  An option that only applies to the stream directly before it"
1202                             "\n            and that overrides previous settings."
1203                             "\n"
1204                             "\nStream MRL syntax:"
1205                             "\n  [[access][/demux]://]URL[@[title][:chapter][-[title][:chapter]]] [:option=value ...]"
1206                             "\n"
1207                             "\n  Many of the global --options can also be used as MRL specific :options."
1208                             "\n  Multiple :option=value pairs can be specified."
1209                             "\n"
1210                             "\nURL syntax:"
1211                             "\n  [file://]filename              Plain media file"
1212                             "\n  http://ip:port/file            HTTP URL"
1213                             "\n  ftp://ip:port/file             FTP URL"
1214                             "\n  mms://ip:port/file             MMS URL"
1215                             "\n  screen://                      Screen capture"
1216                             "\n  [dvd://][device][@raw_device]  DVD device"
1217                             "\n  [vcd://][device]               VCD device"
1218                             "\n  [cdda://][device]              Audio CD device"
1219                             "\n  udp://[[<source address>]@[<bind address>][:<bind port>]]"
1220                             "\n                                 UDP stream sent by a streaming server"
1221                             "\n  vlc://pause:<seconds>          Special item to pause the playlist for a certain time"
1222                             "\n  vlc://quit                     Special item to quit VLC"
1223                             "\n");
1224
1225 static void Help( libvlc_int_t *p_this, char const *psz_help_name )
1226 {
1227 #ifdef WIN32
1228     ShowConsole( true );
1229 #endif
1230
1231     if( psz_help_name && !strcmp( psz_help_name, "help" ) )
1232     {
1233         utf8_fprintf( stdout, vlc_usage, "vlc" );
1234         Usage( p_this, "=help" );
1235         Usage( p_this, "=main" );
1236         print_help_on_full_help();
1237     }
1238     else if( psz_help_name && !strcmp( psz_help_name, "longhelp" ) )
1239     {
1240         utf8_fprintf( stdout, vlc_usage, "vlc" );
1241         Usage( p_this, NULL );
1242         print_help_on_full_help();
1243     }
1244     else if( psz_help_name && !strcmp( psz_help_name, "full-help" ) )
1245     {
1246         utf8_fprintf( stdout, vlc_usage, "vlc" );
1247         Usage( p_this, NULL );
1248     }
1249     else if( psz_help_name )
1250     {
1251         Usage( p_this, psz_help_name );
1252     }
1253
1254 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1255     PauseConsole();
1256 #endif
1257 }
1258
1259 /*****************************************************************************
1260  * Usage: print module usage
1261  *****************************************************************************
1262  * Print a short inline help. Message interface is initialized at this stage.
1263  *****************************************************************************/
1264 #   define COL(x)  "\033[" #x ";1m"
1265 #   define RED     COL(31)
1266 #   define GREEN   COL(32)
1267 #   define YELLOW  COL(33)
1268 #   define BLUE    COL(34)
1269 #   define MAGENTA COL(35)
1270 #   define CYAN    COL(36)
1271 #   define WHITE   COL(0)
1272 #   define GRAY    "\033[0m"
1273 static void
1274 print_help_section( const module_t *m, const module_config_t *p_item,
1275                     bool b_color, bool b_description )
1276 {
1277     if( !p_item ) return;
1278     if( b_color )
1279     {
1280         utf8_fprintf( stdout, RED"   %s:\n"GRAY,
1281                       module_gettext( m, p_item->psz_text ) );
1282         if( b_description && p_item->psz_longtext && *p_item->psz_longtext )
1283             utf8_fprintf( stdout, MAGENTA"   %s\n"GRAY,
1284                           module_gettext( m, p_item->psz_longtext ) );
1285     }
1286     else
1287     {
1288         utf8_fprintf( stdout, "   %s:\n",
1289                       module_gettext( m, p_item->psz_text ) );
1290         if( b_description && p_item->psz_longtext && *p_item->psz_longtext )
1291             utf8_fprintf( stdout, "   %s\n",
1292                           module_gettext(m, p_item->psz_longtext ) );
1293     }
1294 }
1295
1296 static void Usage( libvlc_int_t *p_this, char const *psz_search )
1297 {
1298 #define FORMAT_STRING "  %s --%s%s%s%s%s%s%s "
1299     /* short option ------'    | | | | | | |
1300      * option name ------------' | | | | | |
1301      * <bra ---------------------' | | | | |
1302      * option type or "" ----------' | | | |
1303      * ket> -------------------------' | | |
1304      * padding spaces -----------------' | |
1305      * comment --------------------------' |
1306      * comment suffix ---------------------'
1307      *
1308      * The purpose of having bra and ket is that we might i18n them as well.
1309      */
1310
1311 #define COLOR_FORMAT_STRING (WHITE"  %s --%s"YELLOW"%s%s%s%s%s%s "GRAY)
1312 #define COLOR_FORMAT_STRING_BOOL (WHITE"  %s --%s%s%s%s%s%s%s "GRAY)
1313
1314 #define LINE_START 8
1315 #define PADDING_SPACES 25
1316 #ifdef WIN32
1317 #   define OPTION_VALUE_SEP "="
1318 #else
1319 #   define OPTION_VALUE_SEP " "
1320 #endif
1321     char psz_spaces_text[PADDING_SPACES+LINE_START+1];
1322     char psz_spaces_longtext[LINE_START+3];
1323     char psz_format[sizeof(COLOR_FORMAT_STRING)];
1324     char psz_format_bool[sizeof(COLOR_FORMAT_STRING_BOOL)];
1325     char psz_buffer[10000];
1326     char psz_short[4];
1327     int i_width = ConsoleWidth() - (PADDING_SPACES+LINE_START+1);
1328     int i_width_description = i_width + PADDING_SPACES - 1;
1329     bool b_advanced    = var_InheritBool( p_this, "advanced" );
1330     bool b_description = var_InheritBool( p_this, "help-verbose" );
1331     bool b_description_hack;
1332     bool b_color       = var_InheritBool( p_this, "color" );
1333     bool b_has_advanced = false;
1334     bool b_found       = false;
1335     int  i_only_advanced = 0; /* Number of modules ignored because they
1336                                * only have advanced options */
1337     bool b_strict = psz_search && *psz_search == '=';
1338     if( b_strict ) psz_search++;
1339
1340     memset( psz_spaces_text, ' ', PADDING_SPACES+LINE_START );
1341     psz_spaces_text[PADDING_SPACES+LINE_START] = '\0';
1342     memset( psz_spaces_longtext, ' ', LINE_START+2 );
1343     psz_spaces_longtext[LINE_START+2] = '\0';
1344 #ifndef WIN32
1345     if( !isatty( 1 ) )
1346 #endif
1347         b_color = false; // don't put color control codes in a .txt file
1348
1349     if( b_color )
1350     {
1351         strcpy( psz_format, COLOR_FORMAT_STRING );
1352         strcpy( psz_format_bool, COLOR_FORMAT_STRING_BOOL );
1353     }
1354     else
1355     {
1356         strcpy( psz_format, FORMAT_STRING );
1357         strcpy( psz_format_bool, FORMAT_STRING );
1358     }
1359
1360     /* List all modules */
1361     module_t **list = module_list_get (NULL);
1362     if (!list)
1363         return;
1364
1365     /* Ugly hack to make sure that the help options always come first
1366      * (part 1) */
1367     if( !psz_search )
1368         Usage( p_this, "help" );
1369
1370     /* Enumerate the config for each module */
1371     for (size_t i = 0; list[i]; i++)
1372     {
1373         bool b_help_module;
1374         module_t *p_parser = list[i];
1375         module_config_t *p_item = NULL;
1376         module_config_t *p_section = NULL;
1377         module_config_t *p_end = p_parser->p_config + p_parser->confsize;
1378
1379         if( psz_search &&
1380             ( b_strict ? strcmp( psz_search, p_parser->psz_object_name )
1381                        : !strstr( p_parser->psz_object_name, psz_search ) ) )
1382         {
1383             char *const *pp_shortcuts = p_parser->pp_shortcuts;
1384             unsigned i;
1385             for( i = 0; i < p_parser->i_shortcuts; i++ )
1386             {
1387                 if( b_strict ? !strcmp( psz_search, pp_shortcuts[i] )
1388                              : !!strstr( pp_shortcuts[i], psz_search ) )
1389                     break;
1390             }
1391             if( i == p_parser->i_shortcuts )
1392                 continue;
1393         }
1394
1395         /* Ignore modules without config options */
1396         if( !p_parser->i_config_items )
1397         {
1398             continue;
1399         }
1400
1401         b_help_module = !strcmp( "help", p_parser->psz_object_name );
1402         /* Ugly hack to make sure that the help options always come first
1403          * (part 2) */
1404         if( !psz_search && b_help_module )
1405             continue;
1406
1407         /* Ignore modules with only advanced config options if requested */
1408         if( !b_advanced )
1409         {
1410             for( p_item = p_parser->p_config;
1411                  p_item < p_end;
1412                  p_item++ )
1413             {
1414                 if( (p_item->i_type & CONFIG_ITEM) &&
1415                     !p_item->b_advanced && !p_item->b_removed ) break;
1416             }
1417
1418             if( p_item == p_end )
1419             {
1420                 i_only_advanced++;
1421                 continue;
1422             }
1423         }
1424
1425         b_found = true;
1426
1427         /* Print name of module */
1428         if( strcmp( "main", p_parser->psz_object_name ) )
1429         {
1430             if( b_color )
1431                 utf8_fprintf( stdout, "\n " GREEN "%s" GRAY " (%s)\n",
1432                               module_gettext( p_parser, p_parser->psz_longname ),
1433                               p_parser->psz_object_name );
1434             else
1435                 utf8_fprintf( stdout, "\n %s\n",
1436                               module_gettext(p_parser, p_parser->psz_longname ) );
1437         }
1438         if( p_parser->psz_help )
1439         {
1440             if( b_color )
1441                 utf8_fprintf( stdout, CYAN" %s\n"GRAY,
1442                               module_gettext( p_parser, p_parser->psz_help ) );
1443             else
1444                 utf8_fprintf( stdout, " %s\n",
1445                               module_gettext( p_parser, p_parser->psz_help ) );
1446         }
1447
1448         /* Print module options */
1449         for( p_item = p_parser->p_config;
1450              p_item < p_end;
1451              p_item++ )
1452         {
1453             char *psz_text, *psz_spaces = psz_spaces_text;
1454             const char *psz_bra = NULL, *psz_type = NULL, *psz_ket = NULL;
1455             const char *psz_suf = "", *psz_prefix = NULL;
1456             signed int i;
1457             size_t i_cur_width;
1458
1459             /* Skip removed options */
1460             if( p_item->b_removed )
1461             {
1462                 continue;
1463             }
1464             /* Skip advanced options if requested */
1465             if( p_item->b_advanced && !b_advanced )
1466             {
1467                 b_has_advanced = true;
1468                 continue;
1469             }
1470
1471             switch( p_item->i_type )
1472             {
1473             case CONFIG_HINT_CATEGORY:
1474             case CONFIG_HINT_USAGE:
1475                 if( !strcmp( "main", p_parser->psz_object_name ) )
1476                 {
1477                     if( b_color )
1478                         utf8_fprintf( stdout, GREEN "\n %s\n" GRAY,
1479                                       module_gettext( p_parser, p_item->psz_text ) );
1480                     else
1481                         utf8_fprintf( stdout, "\n %s\n",
1482                                       module_gettext( p_parser, p_item->psz_text ) );
1483                 }
1484                 if( b_description && p_item->psz_longtext
1485                  && *p_item->psz_longtext )
1486                 {
1487                     if( b_color )
1488                         utf8_fprintf( stdout, CYAN " %s\n" GRAY,
1489                                       module_gettext( p_parser, p_item->psz_longtext ) );
1490                     else
1491                         utf8_fprintf( stdout, " %s\n",
1492                                       module_gettext( p_parser, p_item->psz_longtext ) );
1493                 }
1494                 break;
1495
1496             case CONFIG_HINT_SUBCATEGORY:
1497                 if( strcmp( "main", p_parser->psz_object_name ) )
1498                     break;
1499             case CONFIG_SECTION:
1500                 p_section = p_item;
1501                 break;
1502
1503             case CONFIG_ITEM_STRING:
1504             case CONFIG_ITEM_FILE:
1505             case CONFIG_ITEM_DIRECTORY:
1506             case CONFIG_ITEM_MODULE: /* We could also have "=<" here */
1507             case CONFIG_ITEM_MODULE_CAT:
1508             case CONFIG_ITEM_MODULE_LIST:
1509             case CONFIG_ITEM_MODULE_LIST_CAT:
1510             case CONFIG_ITEM_FONT:
1511             case CONFIG_ITEM_PASSWORD:
1512                 print_help_section( p_parser, p_section, b_color,
1513                                     b_description );
1514                 p_section = NULL;
1515                 psz_bra = OPTION_VALUE_SEP "<";
1516                 psz_type = _("string");
1517                 psz_ket = ">";
1518
1519                 if( p_item->ppsz_list )
1520                 {
1521                     psz_bra = OPTION_VALUE_SEP "{";
1522                     psz_type = psz_buffer;
1523                     psz_buffer[0] = '\0';
1524                     for( i = 0; p_item->ppsz_list[i]; i++ )
1525                     {
1526                         if( i ) strcat( psz_buffer, "," );
1527                         strcat( psz_buffer, p_item->ppsz_list[i] );
1528                     }
1529                     psz_ket = "}";
1530                 }
1531                 break;
1532             case CONFIG_ITEM_INTEGER:
1533             case CONFIG_ITEM_KEY: /* FIXME: do something a bit more clever */
1534                 print_help_section( p_parser, p_section, b_color,
1535                                     b_description );
1536                 p_section = NULL;
1537                 psz_bra = OPTION_VALUE_SEP "<";
1538                 psz_type = _("integer");
1539                 psz_ket = ">";
1540
1541                 if( p_item->min.i || p_item->max.i )
1542                 {
1543                     sprintf( psz_buffer, "%s [%i .. %i]", psz_type,
1544                              p_item->min.i, p_item->max.i );
1545                     psz_type = psz_buffer;
1546                 }
1547
1548                 if( p_item->i_list )
1549                 {
1550                     psz_bra = OPTION_VALUE_SEP "{";
1551                     psz_type = psz_buffer;
1552                     psz_buffer[0] = '\0';
1553                     for( i = 0; p_item->ppsz_list_text[i]; i++ )
1554                     {
1555                         if( i ) strcat( psz_buffer, ", " );
1556                         sprintf( psz_buffer + strlen(psz_buffer), "%i (%s)",
1557                                  p_item->pi_list[i],
1558                                  module_gettext( p_parser, p_item->ppsz_list_text[i] ) );
1559                     }
1560                     psz_ket = "}";
1561                 }
1562                 break;
1563             case CONFIG_ITEM_FLOAT:
1564                 print_help_section( p_parser, p_section, b_color,
1565                                     b_description );
1566                 p_section = NULL;
1567                 psz_bra = OPTION_VALUE_SEP "<";
1568                 psz_type = _("float");
1569                 psz_ket = ">";
1570                 if( p_item->min.f || p_item->max.f )
1571                 {
1572                     sprintf( psz_buffer, "%s [%f .. %f]", psz_type,
1573                              p_item->min.f, p_item->max.f );
1574                     psz_type = psz_buffer;
1575                 }
1576                 break;
1577             case CONFIG_ITEM_BOOL:
1578                 print_help_section( p_parser, p_section, b_color,
1579                                     b_description );
1580                 p_section = NULL;
1581                 psz_bra = ""; psz_type = ""; psz_ket = "";
1582                 if( !b_help_module )
1583                 {
1584                     psz_suf = p_item->value.i ? _(" (default enabled)") :
1585                                                 _(" (default disabled)");
1586                 }
1587                 break;
1588             }
1589
1590             if( !psz_type )
1591             {
1592                 continue;
1593             }
1594
1595             /* Add short option if any */
1596             if( p_item->i_short )
1597             {
1598                 sprintf( psz_short, "-%c,", p_item->i_short );
1599             }
1600             else
1601             {
1602                 strcpy( psz_short, "   " );
1603             }
1604
1605             i = PADDING_SPACES - strlen( p_item->psz_name )
1606                  - strlen( psz_bra ) - strlen( psz_type )
1607                  - strlen( psz_ket ) - 1;
1608
1609             if( p_item->i_type == CONFIG_ITEM_BOOL && !b_help_module )
1610             {
1611                 psz_prefix =  ", --no-";
1612                 i -= strlen( p_item->psz_name ) + strlen( psz_prefix );
1613             }
1614
1615             if( i < 0 )
1616             {
1617                 psz_spaces[0] = '\n';
1618                 i = 0;
1619             }
1620             else
1621             {
1622                 psz_spaces[i] = '\0';
1623             }
1624
1625             if( p_item->i_type == CONFIG_ITEM_BOOL && !b_help_module )
1626             {
1627                 utf8_fprintf( stdout, psz_format_bool, psz_short,
1628                               p_item->psz_name, psz_prefix, p_item->psz_name,
1629                               psz_bra, psz_type, psz_ket, psz_spaces );
1630             }
1631             else
1632             {
1633                 utf8_fprintf( stdout, psz_format, psz_short, p_item->psz_name,
1634                          "", "", psz_bra, psz_type, psz_ket, psz_spaces );
1635             }
1636
1637             psz_spaces[i] = ' ';
1638
1639             /* We wrap the rest of the output */
1640             sprintf( psz_buffer, "%s%s", module_gettext( p_parser, p_item->psz_text ),
1641                      psz_suf );
1642             b_description_hack = b_description;
1643
1644  description:
1645             psz_text = psz_buffer;
1646             i_cur_width = b_description && !b_description_hack
1647                           ? i_width_description
1648                           : i_width;
1649             while( *psz_text )
1650             {
1651                 char *psz_parser, *psz_word;
1652                 size_t i_end = strlen( psz_text );
1653
1654                 /* If the remaining text fits in a line, print it. */
1655                 if( i_end <= i_cur_width )
1656                 {
1657                     if( b_color )
1658                     {
1659                         if( !b_description || b_description_hack )
1660                             utf8_fprintf( stdout, BLUE"%s\n"GRAY, psz_text );
1661                         else
1662                             utf8_fprintf( stdout, "%s\n", psz_text );
1663                     }
1664                     else
1665                     {
1666                         utf8_fprintf( stdout, "%s\n", psz_text );
1667                     }
1668                     break;
1669                 }
1670
1671                 /* Otherwise, eat as many words as possible */
1672                 psz_parser = psz_text;
1673                 do
1674                 {
1675                     psz_word = psz_parser;
1676                     psz_parser = strchr( psz_word, ' ' );
1677                     /* If no space was found, we reached the end of the text
1678                      * block; otherwise, we skip the space we just found. */
1679                     psz_parser = psz_parser ? psz_parser + 1
1680                                             : psz_text + i_end;
1681
1682                 } while( (size_t)(psz_parser - psz_text) <= i_cur_width );
1683
1684                 /* We cut a word in one of these cases:
1685                  *  - it's the only word in the line and it's too long.
1686                  *  - we used less than 80% of the width and the word we are
1687                  *    going to wrap is longer than 40% of the width, and even
1688                  *    if the word would have fit in the next line. */
1689                 if( psz_word == psz_text
1690              || ( (size_t)(psz_word - psz_text) < 80 * i_cur_width / 100
1691              && (size_t)(psz_parser - psz_word) > 40 * i_cur_width / 100 ) )
1692                 {
1693                     char c = psz_text[i_cur_width];
1694                     psz_text[i_cur_width] = '\0';
1695                     if( b_color )
1696                     {
1697                         if( !b_description || b_description_hack )
1698                             utf8_fprintf( stdout, BLUE"%s\n%s"GRAY,
1699                                           psz_text, psz_spaces );
1700                         else
1701                             utf8_fprintf( stdout, "%s\n%s",
1702                                           psz_text, psz_spaces );
1703                     }
1704                     else
1705                     {
1706                         utf8_fprintf( stdout, "%s\n%s", psz_text, psz_spaces );
1707                     }
1708                     psz_text += i_cur_width;
1709                     psz_text[0] = c;
1710                 }
1711                 else
1712                 {
1713                     psz_word[-1] = '\0';
1714                     if( b_color )
1715                     {
1716                         if( !b_description || b_description_hack )
1717                             utf8_fprintf( stdout, BLUE"%s\n%s"GRAY,
1718                                           psz_text, psz_spaces );
1719                         else
1720                             utf8_fprintf( stdout, "%s\n%s",
1721                                           psz_text, psz_spaces );
1722                     }
1723                     else
1724                     {
1725                         utf8_fprintf( stdout, "%s\n%s", psz_text, psz_spaces );
1726                     }
1727                     psz_text = psz_word;
1728                 }
1729             }
1730
1731             if( b_description_hack && p_item->psz_longtext
1732              && *p_item->psz_longtext )
1733             {
1734                 sprintf( psz_buffer, "%s%s",
1735                          module_gettext( p_parser, p_item->psz_longtext ),
1736                          psz_suf );
1737                 b_description_hack = false;
1738                 psz_spaces = psz_spaces_longtext;
1739                 utf8_fprintf( stdout, "%s", psz_spaces );
1740                 goto description;
1741             }
1742         }
1743     }
1744
1745     if( b_has_advanced )
1746     {
1747         if( b_color )
1748             utf8_fprintf( stdout, "\n" WHITE "%s" GRAY " %s\n", _( "Note:" ),
1749            _( "add --advanced to your command line to see advanced options."));
1750         else
1751             utf8_fprintf( stdout, "\n%s %s\n", _( "Note:" ),
1752            _( "add --advanced to your command line to see advanced options."));
1753     }
1754
1755     if( i_only_advanced > 0 )
1756     {
1757         if( b_color )
1758         {
1759             utf8_fprintf( stdout, "\n" WHITE "%s" GRAY " ", _( "Note:" ) );
1760             utf8_fprintf( stdout, _( "%d module(s) were not displayed because they only have advanced options.\n" ), i_only_advanced );
1761         }
1762         else
1763         {
1764             utf8_fprintf( stdout, "\n%s ", _( "Note:" ) );
1765             utf8_fprintf( stdout, _( "%d module(s) were not displayed because they only have advanced options.\n" ), i_only_advanced );
1766         }
1767     }
1768     else if( !b_found )
1769     {
1770         if( b_color )
1771             utf8_fprintf( stdout, "\n" WHITE "%s" GRAY "\n",
1772                        _( "No matching module found. Use --list or " \
1773                           "--list-verbose to list available modules." ) );
1774         else
1775             utf8_fprintf( stdout, "\n%s\n",
1776                        _( "No matching module found. Use --list or " \
1777                           "--list-verbose to list available modules." ) );
1778     }
1779
1780     /* Release the module list */
1781     module_list_free (list);
1782 }
1783
1784 /*****************************************************************************
1785  * ListModules: list the available modules with their description
1786  *****************************************************************************
1787  * Print a list of all available modules (builtins and plugins) and a short
1788  * description for each one.
1789  *****************************************************************************/
1790 static void ListModules( libvlc_int_t *p_this, bool b_verbose )
1791 {
1792     module_t *p_parser;
1793
1794     bool b_color = var_InheritBool( p_this, "color" );
1795
1796 #ifdef WIN32
1797     ShowConsole( true );
1798     b_color = false; // don't put color control codes in a .txt file
1799 #else
1800     if( !isatty( 1 ) )
1801         b_color = false;
1802 #endif
1803
1804     /* List all modules */
1805     module_t **list = module_list_get (NULL);
1806
1807     /* Enumerate each module */
1808     for (size_t j = 0; (p_parser = list[j]) != NULL; j++)
1809     {
1810         if( b_color )
1811             utf8_fprintf( stdout, GREEN"  %-22s "WHITE"%s\n"GRAY,
1812                           p_parser->psz_object_name,
1813                           module_gettext( p_parser, p_parser->psz_longname ) );
1814         else
1815             utf8_fprintf( stdout, "  %-22s %s\n",
1816                           p_parser->psz_object_name,
1817                           module_gettext( p_parser, p_parser->psz_longname ) );
1818
1819         if( b_verbose )
1820         {
1821             char *const *pp_shortcuts = p_parser->pp_shortcuts;
1822             for( unsigned i = 0; i < p_parser->i_shortcuts; i++ )
1823             {
1824                 if( strcmp( pp_shortcuts[i], p_parser->psz_object_name ) )
1825                 {
1826                     if( b_color )
1827                         utf8_fprintf( stdout, CYAN"   s %s\n"GRAY,
1828                                       pp_shortcuts[i] );
1829                     else
1830                         utf8_fprintf( stdout, "   s %s\n",
1831                                       pp_shortcuts[i] );
1832                 }
1833             }
1834             if( p_parser->psz_capability )
1835             {
1836                 if( b_color )
1837                     utf8_fprintf( stdout, MAGENTA"   c %s (%d)\n"GRAY,
1838                                   p_parser->psz_capability,
1839                                   p_parser->i_score );
1840                 else
1841                     utf8_fprintf( stdout, "   c %s (%d)\n",
1842                                   p_parser->psz_capability,
1843                                   p_parser->i_score );
1844             }
1845         }
1846     }
1847     module_list_free (list);
1848
1849 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1850     PauseConsole();
1851 #endif
1852 }
1853
1854 /*****************************************************************************
1855  * Version: print complete program version
1856  *****************************************************************************
1857  * Print complete program version and build number.
1858  *****************************************************************************/
1859 static void Version( void )
1860 {
1861 #ifdef WIN32
1862     ShowConsole( true );
1863 #endif
1864
1865     utf8_fprintf( stdout, _("VLC version %s (%s)\n"), VLC_Version(),
1866                   psz_vlc_changeset );
1867     utf8_fprintf( stdout, _("Compiled by %s on %s (%s)\n"),
1868              VLC_CompileBy(), VLC_CompileHost(), __DATE__" "__TIME__ );
1869     utf8_fprintf( stdout, _("Compiler: %s\n"), VLC_Compiler() );
1870     utf8_fprintf( stdout, "%s", LICENSE_MSG );
1871
1872 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1873     PauseConsole();
1874 #endif
1875 }
1876
1877 /*****************************************************************************
1878  * ShowConsole: On Win32, create an output console for debug messages
1879  *****************************************************************************
1880  * This function is useful only on Win32.
1881  *****************************************************************************/
1882 #ifdef WIN32 /*  */
1883 static void ShowConsole( bool b_dofile )
1884 {
1885 #   ifndef UNDER_CE
1886     FILE *f_help = NULL;
1887
1888     if( getenv( "PWD" ) && getenv( "PS1" ) ) return; /* cygwin shell */
1889
1890     AllocConsole();
1891     /* Use the ANSI code page (e.g. Windows-1252) as expected by the LibVLC
1892      * Unicode/locale subsystem. By default, we have the obsolecent OEM code
1893      * page (e.g. CP437 or CP850). */
1894     SetConsoleOutputCP (GetACP ());
1895     SetConsoleTitle ("VLC media player version "PACKAGE_VERSION);
1896
1897     freopen( "CONOUT$", "w", stderr );
1898     freopen( "CONIN$", "r", stdin );
1899
1900     if( b_dofile && (f_help = fopen( "vlc-help.txt", "wt" )) )
1901     {
1902         fclose( f_help );
1903         freopen( "vlc-help.txt", "wt", stdout );
1904         utf8_fprintf( stderr, _("\nDumped content to vlc-help.txt file.\n") );
1905     }
1906     else freopen( "CONOUT$", "w", stdout );
1907
1908 #   endif
1909 }
1910 #endif
1911
1912 /*****************************************************************************
1913  * PauseConsole: On Win32, wait for a key press before closing the console
1914  *****************************************************************************
1915  * This function is useful only on Win32.
1916  *****************************************************************************/
1917 #ifdef WIN32 /*  */
1918 static void PauseConsole( void )
1919 {
1920 #   ifndef UNDER_CE
1921
1922     if( getenv( "PWD" ) && getenv( "PS1" ) ) return; /* cygwin shell */
1923
1924     utf8_fprintf( stderr, _("\nPress the RETURN key to continue...\n") );
1925     getchar();
1926     fclose( stdout );
1927
1928 #   endif
1929 }
1930 #endif
1931
1932 /*****************************************************************************
1933  * ConsoleWidth: Return the console width in characters
1934  *****************************************************************************
1935  * We use the stty shell command to get the console width; if this fails or
1936  * if the width is less than 80, we default to 80.
1937  *****************************************************************************/
1938 static int ConsoleWidth( void )
1939 {
1940     unsigned i_width = 80;
1941
1942 #ifndef WIN32
1943     FILE *file = popen( "stty size 2>/dev/null", "r" );
1944     if (file != NULL)
1945     {
1946         if (fscanf (file, "%*u %u", &i_width) <= 0)
1947             i_width = 80;
1948         pclose( file );
1949     }
1950 #elif !defined (UNDER_CE)
1951     CONSOLE_SCREEN_BUFFER_INFO buf;
1952
1953     if (GetConsoleScreenBufferInfo (GetStdHandle (STD_OUTPUT_HANDLE), &buf))
1954         i_width = buf.dwSize.X;
1955 #endif
1956
1957     return i_width;
1958 }