]> git.sesse.net Git - vlc/blob - src/libvlc.c
libvlc: initialize message settings early enough
[vlc] / src / libvlc.c
1 /*****************************************************************************
2  * libvlc.c: libvlc instances creation and deletion, interfaces handling
3  *****************************************************************************
4  * Copyright (C) 1998-2008 VLC authors and VideoLAN
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 it
14  * under the terms of the GNU Lesser General Public License as published by
15  * the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
22  *
23  * You should have received a copy of the GNU Lesser General Public License
24  * along with this program; if not, write to the Free Software Foundation,
25  * 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 "../lib/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 #include "config/vlc_getopt.h"
51
52 #ifdef HAVE_UNISTD_H
53 #   include <unistd.h> /* isatty() */
54 #endif
55
56 #ifdef HAVE_DBUS
57 /* used for one-instance mode */
58 #   include <dbus/dbus.h>
59 #endif
60
61
62 #include <vlc_media_library.h>
63 #include <vlc_playlist.h>
64 #include <vlc_interface.h>
65
66 #include <vlc_charset.h>
67 #include <vlc_fs.h>
68 #include <vlc_cpu.h>
69 #include <vlc_url.h>
70 #include <vlc_modules.h>
71
72 #include "libvlc.h"
73 #include "playlist/playlist_internal.h"
74 #include "misc/variables.h"
75
76 #include <vlc_vlm.h>
77
78 #ifdef __APPLE__
79 # include <libkern/OSAtomic.h>
80 #endif
81
82 #include <assert.h>
83
84 /*****************************************************************************
85  * The evil global variables. We handle them with care, don't worry.
86  *****************************************************************************/
87
88 #if !defined(WIN32) && !defined(__OS2__)
89 static bool b_daemon = false;
90 #endif
91
92 /*****************************************************************************
93  * Local prototypes
94  *****************************************************************************/
95 static void GetFilenames  ( libvlc_int_t *, unsigned, const char *const [] );
96
97 /**
98  * Allocate a libvlc instance, initialize global data if needed
99  * It also initializes the threading system
100  */
101 libvlc_int_t * libvlc_InternalCreate( void )
102 {
103     libvlc_int_t *p_libvlc;
104     libvlc_priv_t *priv;
105
106     /* Now that the thread system is initialized, we don't have much, but
107      * at least we have variables */
108     /* Allocate a libvlc instance object */
109     p_libvlc = vlc_custom_create( (vlc_object_t *)NULL, sizeof (*priv),
110                                   "libvlc" );
111     if( p_libvlc == NULL )
112         return NULL;
113
114     priv = libvlc_priv (p_libvlc);
115     priv->p_playlist = NULL;
116     priv->p_ml = NULL;
117     priv->p_dialog_provider = NULL;
118     priv->p_vlm = NULL;
119
120     /* Initialize mutexes */
121     vlc_mutex_init( &priv->ml_lock );
122     vlc_ExitInit( &priv->exit );
123
124     return p_libvlc;
125 }
126
127 /**
128  * Initialize a libvlc instance
129  * This function initializes a previously allocated libvlc instance:
130  *  - CPU detection
131  *  - gettext initialization
132  *  - message queue, module bank and playlist initialization
133  *  - configuration and commandline parsing
134  */
135 int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
136                          const char *ppsz_argv[] )
137 {
138     libvlc_priv_t *priv = libvlc_priv (p_libvlc);
139     char *       psz_modules = NULL;
140     char *       psz_parser = NULL;
141     char *       psz_control = NULL;
142     char        *psz_val;
143
144     /* System specific initialization code */
145     system_Init();
146
147     /* Initialize the module bank and load the configuration of the
148      * main module. We need to do this at this stage to be able to display
149      * a short help if required by the user. (short help == main module
150      * options) */
151     module_InitBank ();
152
153     /* Get command line options that affect module loading. */
154     if( config_LoadCmdLine( p_libvlc, i_argc, ppsz_argv, NULL ) )
155     {
156         module_EndBank (false);
157         return VLC_EGENERIC;
158     }
159
160     /*
161      * Message queue options (read-only afterwards)
162      */
163 #if defined (HAVE_ISATTY) && !defined (WIN32)
164     if (isatty (STDERR_FILENO))
165         priv->b_color = var_InheritBool (p_libvlc, "color");
166     else
167 #endif
168         priv->b_color = false;
169
170     priv->i_verbose = var_InheritInteger (p_libvlc, "verbose");
171     psz_val = getenv ("VLC_VERBOSE");
172     if (psz_val != NULL)
173         priv->i_verbose = atoi (psz_val);
174
175     if (var_InheritBool (p_libvlc, "quiet"))
176     {
177         var_Create (p_libvlc, "verbose", VLC_VAR_INTEGER);
178         var_SetInteger (p_libvlc, "verbose", -1);
179         priv->i_verbose = -1;
180     }
181
182     /* Announce who we are (TODO: only first instance?) */
183     msg_Dbg( p_libvlc, "VLC media player - %s", VERSION_MESSAGE );
184     msg_Dbg( p_libvlc, "%s", COPYRIGHT_MESSAGE );
185     msg_Dbg( p_libvlc, "revision %s", psz_vlc_changeset );
186     msg_Dbg( p_libvlc, "configured with %s", CONFIGURE_LINE );
187     vlc_threads_setup (p_libvlc);
188
189     /* Load the builtins and plugins into the module_bank.
190      * We have to do it before config_Load*() because this also gets the
191      * list of configuration options exported by each module and loads their
192      * default values. */
193     size_t module_count = module_LoadPlugins (p_libvlc);
194
195     /*
196      * Override default configuration with config file settings
197      */
198     if( !var_InheritBool( p_libvlc, "ignore-config" ) )
199     {
200         if( var_InheritBool( p_libvlc, "reset-config" ) )
201             config_SaveConfigFile( p_libvlc ); /* Save default config */
202         else
203             config_LoadConfigFile( p_libvlc );
204     }
205
206     /*
207      * Override configuration with command line settings
208      */
209     int vlc_optind;
210     if( config_LoadCmdLine( p_libvlc, i_argc, ppsz_argv, &vlc_optind ) )
211     {
212         module_EndBank (true);
213         return VLC_EGENERIC;
214     }
215
216     /*
217      * Support for gettext
218      */
219 #if defined( ENABLE_NLS ) \
220      && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
221     vlc_bindtextdomain (PACKAGE_NAME);
222 #endif
223     /*xgettext: Translate "C" to the language code: "fr", "en_GB", "nl", "ru"... */
224     msg_Dbg( p_libvlc, "translation test: code is \"%s\"", _("C") );
225
226     if (config_PrintHelp (VLC_OBJECT(p_libvlc)))
227     {
228         module_EndBank (true);
229         exit(0);
230     }
231
232     if( module_count <= 1 )
233     {
234         msg_Err( p_libvlc, "No plugins found! Check your VLC installation.");
235         module_EndBank (true);
236         return VLC_ENOMOD;
237     }
238
239 #ifdef HAVE_DAEMON
240     /* Check for daemon mode */
241     if( var_InheritBool( p_libvlc, "daemon" ) )
242     {
243         char *psz_pidfile = NULL;
244
245         if( daemon( 1, 0) != 0 )
246         {
247             msg_Err( p_libvlc, "Unable to fork vlc to daemon mode" );
248             module_EndBank (true);
249             return VLC_ENOMEM;
250         }
251         b_daemon = true;
252
253         /* lets check if we need to write the pidfile */
254         psz_pidfile = var_CreateGetNonEmptyString( p_libvlc, "pidfile" );
255         if( psz_pidfile != NULL )
256         {
257             FILE *pidfile;
258             pid_t i_pid = getpid ();
259             msg_Dbg( p_libvlc, "PID is %d, writing it to %s",
260                                i_pid, psz_pidfile );
261             pidfile = vlc_fopen( psz_pidfile,"w" );
262             if( pidfile != NULL )
263             {
264                 utf8_fprintf( pidfile, "%d", (int)i_pid );
265                 fclose( pidfile );
266             }
267             else
268             {
269                 msg_Err( p_libvlc, "cannot open pid file for writing: %s (%m)",
270                          psz_pidfile );
271             }
272         }
273         free( psz_pidfile );
274     }
275 #endif
276
277 /* FIXME: could be replaced by using Unix sockets */
278 #ifdef HAVE_DBUS
279
280 #define MPRIS_APPEND "/org/mpris/MediaPlayer2/TrackList/Append"
281 #define MPRIS_BUS_NAME "org.mpris.MediaPlayer2.vlc"
282 #define MPRIS_OBJECT_PATH "/org/mpris/MediaPlayer2"
283 #define MPRIS_TRACKLIST_INTERFACE "org.mpris.MediaPlayer2.TrackList"
284
285     if( var_InheritBool( p_libvlc, "one-instance" )
286     || ( var_InheritBool( p_libvlc, "one-instance-when-started-from-file" )
287       && var_InheritBool( p_libvlc, "started-from-file" ) ) )
288     {
289         for( int i = vlc_optind; i < i_argc; i++ )
290             if( ppsz_argv[i][0] == ':' )
291             {
292                 msg_Err( p_libvlc, "item option %s incompatible with single instance",
293                          ppsz_argv[i] );
294                 goto dbus_out;
295             }
296
297         /* Initialise D-Bus interface, check for other instances */
298         dbus_threads_init_default();
299
300         DBusError err;
301         dbus_error_init( &err );
302
303         /* connect to the session bus */
304         DBusConnection  *conn = dbus_bus_get( DBUS_BUS_SESSION, &err );
305         if( conn == NULL )
306         {
307             msg_Err( p_libvlc, "Failed to connect to D-Bus session daemon: %s",
308                     err.message );
309             dbus_error_free( &err );
310             goto dbus_out;
311         }
312
313         /* check if VLC is available on the bus
314          * if not: D-Bus control is not enabled on the other
315          * instance and we can't pass MRLs to it */
316         /* FIXME: This check is totally brain-dead and buggy. */
317         if( !dbus_bus_name_has_owner( conn, MPRIS_BUS_NAME, &err ) )
318         {
319             dbus_connection_unref( conn );
320             if( dbus_error_is_set( &err ) )
321             {
322                 msg_Err( p_libvlc, "D-Bus error: %s", err.message );
323             }
324             else
325                 msg_Dbg( p_libvlc, "No media player running. Continuing normally." );
326             dbus_error_free( &err );
327             goto dbus_out;
328         }
329
330         const dbus_bool_t play = !var_InheritBool( p_libvlc, "playlist-enqueue" );
331
332         msg_Warn( p_libvlc, "media player running. Exiting...");
333         for( int i = vlc_optind; i < i_argc; i++ )
334         {
335             DBusMessage *msg = dbus_message_new_method_call(
336                MPRIS_BUS_NAME, MPRIS_OBJECT_PATH, MPRIS_TRACKLIST_INTERFACE, "AddTrack" );
337             if( unlikely(msg == NULL) )
338                 continue;
339
340             /* We need to resolve relative paths in this instance */
341             char *mrl;
342             if( strstr( ppsz_argv[i], "://" ) )
343                 mrl = strdup( ppsz_argv[i] );
344             else
345                 mrl = vlc_path2uri( ppsz_argv[i], NULL );
346             if( mrl == NULL )
347             {
348                 dbus_message_unref( msg );
349                 continue;
350             }
351
352             const char *after_track = MPRIS_APPEND;
353
354             /* append MRLs */
355             if( !dbus_message_append_args( msg, DBUS_TYPE_STRING, &mrl,
356                                                 DBUS_TYPE_OBJECT_PATH, &after_track,
357                                                 DBUS_TYPE_BOOLEAN, &play,
358                                                 DBUS_TYPE_INVALID ) )
359             {
360                  dbus_message_unref( msg );
361                  msg = NULL;
362             }
363             free( mrl );
364             if( unlikely(msg == NULL) )
365                 continue;
366
367             msg_Dbg( p_libvlc, "Adds %s to the running media player", mrl );
368
369             /* send message and get a handle for a reply */
370             DBusMessage *reply = dbus_connection_send_with_reply_and_block( conn, msg, -1,
371                                                                             &err );
372             dbus_message_unref( msg );
373             if( reply == NULL )
374             {
375                 msg_Err( p_libvlc, "D-Bus error: %s", err.message );
376                 continue;
377             }
378             dbus_message_unref( reply );
379         }
380         /* we unreference the connection when we've finished with it */
381         dbus_connection_unref( conn );
382         exit( 1 );
383     }
384 #undef MPRIS_APPEND
385 #undef MPRIS_BUS_NAME
386 #undef MPRIS_OBJECT_PATH
387 #undef MPRIS_TRACKLIST_INTERFACE
388 dbus_out:
389 #endif // HAVE_DBUS
390
391     vlc_CPU_dump( VLC_OBJECT(p_libvlc) );
392     vlc_object_set_name( p_libvlc, "main" );
393
394     priv->b_stats = var_InheritBool( p_libvlc, "stats" );
395
396     /*
397      * Initialize hotkey handling
398      */
399     priv->actions = vlc_InitActions( p_libvlc );
400
401     /* Create a variable for showing the fullscreen interface */
402     var_Create( p_libvlc, "intf-toggle-fscontrol", VLC_VAR_BOOL );
403     var_SetBool( p_libvlc, "intf-toggle-fscontrol", true );
404
405     /* Create a variable for the Boss Key */
406     var_Create( p_libvlc, "intf-boss", VLC_VAR_VOID );
407
408     /* Create a variable for showing the main interface */
409     var_Create( p_libvlc, "intf-show", VLC_VAR_BOOL );
410
411     /* Create a variable for showing the right click menu */
412     var_Create( p_libvlc, "intf-popupmenu", VLC_VAR_BOOL );
413
414     /* variables for signalling creation of new files */
415     var_Create( p_libvlc, "snapshot-file", VLC_VAR_STRING );
416     var_Create( p_libvlc, "record-file", VLC_VAR_STRING );
417
418     /* some default internal settings */
419     var_Create( p_libvlc, "window", VLC_VAR_STRING );
420     var_Create( p_libvlc, "user-agent", VLC_VAR_STRING );
421     var_SetString( p_libvlc, "user-agent", "(LibVLC "VERSION")" );
422
423     /* System specific configuration */
424     system_Configure( p_libvlc, i_argc - vlc_optind, ppsz_argv + vlc_optind );
425
426 #if defined(MEDIA_LIBRARY)
427     /* Get the ML */
428     if( var_GetBool( p_libvlc, "load-media-library-on-startup" ) )
429     {
430         priv->p_ml = ml_Create( VLC_OBJECT( p_libvlc ), NULL );
431         if( !priv->p_ml )
432         {
433             msg_Err( p_libvlc, "ML initialization failed" );
434             return VLC_EGENERIC;
435         }
436     }
437     else
438     {
439         priv->p_ml = NULL;
440     }
441 #endif
442
443 #ifdef ENABLE_VLM
444     /* Initialize VLM if vlm-conf is specified */
445     psz_parser = var_CreateGetNonEmptyString( p_libvlc, "vlm-conf" );
446     if( psz_parser )
447     {
448         priv->p_vlm = vlm_New( p_libvlc );
449         if( !priv->p_vlm )
450             msg_Err( p_libvlc, "VLM initialization failed" );
451     }
452     free( psz_parser );
453 #endif
454
455     /*
456      * Load background interfaces
457      */
458     psz_modules = var_CreateGetNonEmptyString( p_libvlc, "extraintf" );
459     psz_control = var_CreateGetNonEmptyString( p_libvlc, "control" );
460
461     if( psz_modules && psz_control )
462     {
463         char* psz_tmp;
464         if( asprintf( &psz_tmp, "%s:%s", psz_modules, psz_control ) != -1 )
465         {
466             free( psz_modules );
467             psz_modules = psz_tmp;
468         }
469     }
470     else if( psz_control )
471     {
472         free( psz_modules );
473         psz_modules = strdup( psz_control );
474     }
475
476     psz_parser = psz_modules;
477     while ( psz_parser && *psz_parser )
478     {
479         char *psz_module, *psz_temp;
480         psz_module = psz_parser;
481         psz_parser = strchr( psz_module, ':' );
482         if ( psz_parser )
483         {
484             *psz_parser = '\0';
485             psz_parser++;
486         }
487         if( asprintf( &psz_temp, "%s,none", psz_module ) != -1)
488         {
489             intf_Create( p_libvlc, psz_temp );
490             free( psz_temp );
491         }
492     }
493     free( psz_modules );
494     free( psz_control );
495
496     if( var_InheritBool( p_libvlc, "file-logging" )
497 #ifdef HAVE_SYSLOG_H
498         && !var_InheritBool( p_libvlc, "syslog" )
499 #endif
500         )
501     {
502         intf_Create( p_libvlc, "logger,none" );
503     }
504 #ifdef HAVE_SYSLOG_H
505     if( var_InheritBool( p_libvlc, "syslog" ) )
506     {
507         char *logmode = var_CreateGetNonEmptyString( p_libvlc, "logmode" );
508         var_SetString( p_libvlc, "logmode", "syslog" );
509         intf_Create( p_libvlc, "logger,none" );
510
511         if( logmode )
512         {
513             var_SetString( p_libvlc, "logmode", logmode );
514             free( logmode );
515         }
516         var_Destroy( p_libvlc, "logmode" );
517     }
518 #endif
519
520     if( var_InheritBool( p_libvlc, "network-synchronisation") )
521     {
522         intf_Create( p_libvlc, "netsync,none" );
523     }
524
525 #ifdef __APPLE__
526     var_Create( p_libvlc, "drawable-view-top", VLC_VAR_INTEGER );
527     var_Create( p_libvlc, "drawable-view-left", VLC_VAR_INTEGER );
528     var_Create( p_libvlc, "drawable-view-bottom", VLC_VAR_INTEGER );
529     var_Create( p_libvlc, "drawable-view-right", VLC_VAR_INTEGER );
530     var_Create( p_libvlc, "drawable-clip-top", VLC_VAR_INTEGER );
531     var_Create( p_libvlc, "drawable-clip-left", VLC_VAR_INTEGER );
532     var_Create( p_libvlc, "drawable-clip-bottom", VLC_VAR_INTEGER );
533     var_Create( p_libvlc, "drawable-clip-right", VLC_VAR_INTEGER );
534     var_Create( p_libvlc, "drawable-nsobject", VLC_VAR_ADDRESS );
535 #endif
536 #if defined (WIN32) || defined (__OS2__)
537     var_Create( p_libvlc, "drawable-hwnd", VLC_VAR_INTEGER );
538 #endif
539
540     /*
541      * Get input filenames given as commandline arguments.
542      * We assume that the remaining parameters are filenames
543      * and their input options.
544      */
545     GetFilenames( p_libvlc, i_argc - vlc_optind, ppsz_argv + vlc_optind );
546
547     /*
548      * Get --open argument
549      */
550     psz_val = var_InheritString( p_libvlc, "open" );
551     if ( psz_val != NULL )
552     {
553         playlist_AddExt( pl_Get(p_libvlc), psz_val, NULL, PLAYLIST_INSERT, 0,
554                          -1, 0, NULL, 0, true, pl_Unlocked );
555         free( psz_val );
556     }
557
558     return VLC_SUCCESS;
559 }
560
561 /**
562  * Cleanup a libvlc instance. The instance is not completely deallocated
563  * \param p_libvlc the instance to clean
564  */
565 void libvlc_InternalCleanup( libvlc_int_t *p_libvlc )
566 {
567     libvlc_priv_t *priv = libvlc_priv (p_libvlc);
568
569     /* Ask the interfaces to stop and destroy them */
570     msg_Dbg( p_libvlc, "removing all interfaces" );
571     libvlc_Quit( p_libvlc );
572     intf_DestroyAll( p_libvlc );
573
574 #ifdef ENABLE_VLM
575     /* Destroy VLM if created in libvlc_InternalInit */
576     if( priv->p_vlm )
577     {
578         vlm_Delete( priv->p_vlm );
579     }
580 #endif
581
582 #if defined(MEDIA_LIBRARY)
583     media_library_t* p_ml = priv->p_ml;
584     if( p_ml )
585     {
586         ml_Destroy( VLC_OBJECT( p_ml ) );
587         vlc_object_release( p_ml );
588         libvlc_priv(p_playlist->p_libvlc)->p_ml = NULL;
589     }
590 #endif
591
592     /* Free playlist now, all threads are gone */
593     playlist_t *p_playlist = libvlc_priv (p_libvlc)->p_playlist;
594     if( p_playlist != NULL )
595         playlist_Destroy( p_playlist );
596
597     msg_Dbg( p_libvlc, "removing stats" );
598
599 #if !defined( WIN32 ) && !defined( __OS2__ )
600     char* psz_pidfile = NULL;
601
602     if( b_daemon )
603     {
604         psz_pidfile = var_CreateGetNonEmptyString( p_libvlc, "pidfile" );
605         if( psz_pidfile != NULL )
606         {
607             msg_Dbg( p_libvlc, "removing pid file %s", psz_pidfile );
608             if( unlink( psz_pidfile ) == -1 )
609             {
610                 msg_Dbg( p_libvlc, "removing pid file %s: %m",
611                         psz_pidfile );
612             }
613         }
614         free( psz_pidfile );
615     }
616 #endif
617
618     /* Save the configuration */
619     if( !var_InheritBool( p_libvlc, "ignore-config" ) )
620         config_AutoSaveConfigFile( VLC_OBJECT(p_libvlc) );
621
622     /* Free module bank. It is refcounted, so we call this each time  */
623     module_EndBank (true);
624
625     vlc_DeinitActions( p_libvlc, priv->actions );
626 #if defined(WIN32) || defined(__OS2__)
627     system_End( );
628 #endif
629 }
630
631 /**
632  * Destroy everything.
633  * This function requests the running threads to finish, waits for their
634  * termination, and destroys their structure.
635  * It stops the thread systems: no instance can run after this has run
636  * \param p_libvlc the instance to destroy
637  */
638 void libvlc_InternalDestroy( libvlc_int_t *p_libvlc )
639 {
640     libvlc_priv_t *priv = libvlc_priv( p_libvlc );
641
642     /* Destroy mutexes */
643     vlc_ExitDestroy( &priv->exit );
644     vlc_mutex_destroy( &priv->ml_lock );
645
646     assert( atomic_load(&(vlc_internals(p_libvlc)->refs)) == 1 );
647     vlc_object_release( p_libvlc );
648 }
649
650 /**
651  * Add an interface plugin and run it
652  */
653 int libvlc_InternalAddIntf( libvlc_int_t *p_libvlc, char const *psz_module )
654 {
655     if( !p_libvlc )
656         return VLC_EGENERIC;
657
658     if( !psz_module ) /* requesting the default interface */
659     {
660         char *psz_interface = var_CreateGetNonEmptyString( p_libvlc, "intf" );
661         if( !psz_interface ) /* "intf" has not been set */
662         {
663 #if !defined( WIN32 ) && !defined( __OS2__ )
664             if( b_daemon )
665                  /* Daemon mode hack.
666                   * We prefer the dummy interface if none is specified. */
667                 psz_module = "dummy";
668             else
669 #endif
670                 msg_Info( p_libvlc, "%s",
671                           _("Running vlc with the default interface. "
672                             "Use 'cvlc' to use vlc without interface.") );
673         }
674         free( psz_interface );
675         var_Destroy( p_libvlc, "intf" );
676     }
677
678     /* Try to create the interface */
679     int ret = intf_Create( p_libvlc, psz_module ? psz_module : "$intf" );
680     if( ret )
681         msg_Err( p_libvlc, "interface \"%s\" initialization failed",
682                  psz_module ? psz_module : "default" );
683     return ret;
684 }
685
686 /*****************************************************************************
687  * GetFilenames: parse command line options which are not flags
688  *****************************************************************************
689  * Parse command line for input files as well as their associated options.
690  * An option always follows its associated input and begins with a ":".
691  *****************************************************************************/
692 static void GetFilenames( libvlc_int_t *p_vlc, unsigned n,
693                           const char *const args[] )
694 {
695     while( n > 0 )
696     {
697         /* Count the input options */
698         unsigned i_options = 0;
699
700         while( args[--n][0] == ':' )
701         {
702             i_options++;
703             if( n == 0 )
704             {
705                 msg_Warn( p_vlc, "options %s without item", args[n] );
706                 return; /* syntax!? */
707             }
708         }
709
710         char *mrl = NULL;
711         if( strstr( args[n], "://" ) == NULL )
712         {
713             mrl = vlc_path2uri( args[n], NULL );
714             if( !mrl )
715                 continue;
716         }
717
718         playlist_AddExt( pl_Get( p_vlc ), (mrl != NULL) ? mrl : args[n], NULL,
719                          PLAYLIST_INSERT, 0, -1, i_options,
720                          ( i_options ? &args[n + 1] : NULL ),
721                          VLC_INPUT_OPTION_TRUSTED, true, pl_Unlocked );
722         free( mrl );
723     }
724 }