]> git.sesse.net Git - vlc/blob - src/libvlc.c
libvlc: remove redundant object name hack
[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
393     priv->b_stats = var_InheritBool( p_libvlc, "stats" );
394
395     /*
396      * Initialize hotkey handling
397      */
398     priv->actions = vlc_InitActions( p_libvlc );
399
400     /* Create a variable for showing the fullscreen interface */
401     var_Create( p_libvlc, "intf-toggle-fscontrol", VLC_VAR_BOOL );
402     var_SetBool( p_libvlc, "intf-toggle-fscontrol", true );
403
404     /* Create a variable for the Boss Key */
405     var_Create( p_libvlc, "intf-boss", VLC_VAR_VOID );
406
407     /* Create a variable for showing the main interface */
408     var_Create( p_libvlc, "intf-show", VLC_VAR_BOOL );
409
410     /* Create a variable for showing the right click menu */
411     var_Create( p_libvlc, "intf-popupmenu", VLC_VAR_BOOL );
412
413     /* variables for signalling creation of new files */
414     var_Create( p_libvlc, "snapshot-file", VLC_VAR_STRING );
415     var_Create( p_libvlc, "record-file", VLC_VAR_STRING );
416
417     /* some default internal settings */
418     var_Create( p_libvlc, "window", VLC_VAR_STRING );
419     var_Create( p_libvlc, "user-agent", VLC_VAR_STRING );
420     var_SetString( p_libvlc, "user-agent", "(LibVLC "VERSION")" );
421
422     /* System specific configuration */
423     system_Configure( p_libvlc, i_argc - vlc_optind, ppsz_argv + vlc_optind );
424
425 #if defined(MEDIA_LIBRARY)
426     /* Get the ML */
427     if( var_GetBool( p_libvlc, "load-media-library-on-startup" ) )
428     {
429         priv->p_ml = ml_Create( VLC_OBJECT( p_libvlc ), NULL );
430         if( !priv->p_ml )
431         {
432             msg_Err( p_libvlc, "ML initialization failed" );
433             return VLC_EGENERIC;
434         }
435     }
436     else
437     {
438         priv->p_ml = NULL;
439     }
440 #endif
441
442 #ifdef ENABLE_VLM
443     /* Initialize VLM if vlm-conf is specified */
444     psz_parser = var_CreateGetNonEmptyString( p_libvlc, "vlm-conf" );
445     if( psz_parser )
446     {
447         priv->p_vlm = vlm_New( p_libvlc );
448         if( !priv->p_vlm )
449             msg_Err( p_libvlc, "VLM initialization failed" );
450     }
451     free( psz_parser );
452 #endif
453
454     /*
455      * Load background interfaces
456      */
457     psz_modules = var_CreateGetNonEmptyString( p_libvlc, "extraintf" );
458     psz_control = var_CreateGetNonEmptyString( p_libvlc, "control" );
459
460     if( psz_modules && psz_control )
461     {
462         char* psz_tmp;
463         if( asprintf( &psz_tmp, "%s:%s", psz_modules, psz_control ) != -1 )
464         {
465             free( psz_modules );
466             psz_modules = psz_tmp;
467         }
468     }
469     else if( psz_control )
470     {
471         free( psz_modules );
472         psz_modules = strdup( psz_control );
473     }
474
475     psz_parser = psz_modules;
476     while ( psz_parser && *psz_parser )
477     {
478         char *psz_module, *psz_temp;
479         psz_module = psz_parser;
480         psz_parser = strchr( psz_module, ':' );
481         if ( psz_parser )
482         {
483             *psz_parser = '\0';
484             psz_parser++;
485         }
486         if( asprintf( &psz_temp, "%s,none", psz_module ) != -1)
487         {
488             intf_Create( p_libvlc, psz_temp );
489             free( psz_temp );
490         }
491     }
492     free( psz_modules );
493     free( psz_control );
494
495     if( var_InheritBool( p_libvlc, "file-logging" )
496 #ifdef HAVE_SYSLOG_H
497         && !var_InheritBool( p_libvlc, "syslog" )
498 #endif
499         )
500     {
501         intf_Create( p_libvlc, "logger,none" );
502     }
503 #ifdef HAVE_SYSLOG_H
504     if( var_InheritBool( p_libvlc, "syslog" ) )
505     {
506         char *logmode = var_CreateGetNonEmptyString( p_libvlc, "logmode" );
507         var_SetString( p_libvlc, "logmode", "syslog" );
508         intf_Create( p_libvlc, "logger,none" );
509
510         if( logmode )
511         {
512             var_SetString( p_libvlc, "logmode", logmode );
513             free( logmode );
514         }
515         var_Destroy( p_libvlc, "logmode" );
516     }
517 #endif
518
519     if( var_InheritBool( p_libvlc, "network-synchronisation") )
520     {
521         intf_Create( p_libvlc, "netsync,none" );
522     }
523
524 #ifdef __APPLE__
525     var_Create( p_libvlc, "drawable-view-top", VLC_VAR_INTEGER );
526     var_Create( p_libvlc, "drawable-view-left", VLC_VAR_INTEGER );
527     var_Create( p_libvlc, "drawable-view-bottom", VLC_VAR_INTEGER );
528     var_Create( p_libvlc, "drawable-view-right", VLC_VAR_INTEGER );
529     var_Create( p_libvlc, "drawable-clip-top", VLC_VAR_INTEGER );
530     var_Create( p_libvlc, "drawable-clip-left", VLC_VAR_INTEGER );
531     var_Create( p_libvlc, "drawable-clip-bottom", VLC_VAR_INTEGER );
532     var_Create( p_libvlc, "drawable-clip-right", VLC_VAR_INTEGER );
533     var_Create( p_libvlc, "drawable-nsobject", VLC_VAR_ADDRESS );
534 #endif
535 #if defined (WIN32) || defined (__OS2__)
536     var_Create( p_libvlc, "drawable-hwnd", VLC_VAR_INTEGER );
537 #endif
538
539     /*
540      * Get input filenames given as commandline arguments.
541      * We assume that the remaining parameters are filenames
542      * and their input options.
543      */
544     GetFilenames( p_libvlc, i_argc - vlc_optind, ppsz_argv + vlc_optind );
545
546     /*
547      * Get --open argument
548      */
549     psz_val = var_InheritString( p_libvlc, "open" );
550     if ( psz_val != NULL )
551     {
552         playlist_AddExt( pl_Get(p_libvlc), psz_val, NULL, PLAYLIST_INSERT, 0,
553                          -1, 0, NULL, 0, true, pl_Unlocked );
554         free( psz_val );
555     }
556
557     return VLC_SUCCESS;
558 }
559
560 /**
561  * Cleanup a libvlc instance. The instance is not completely deallocated
562  * \param p_libvlc the instance to clean
563  */
564 void libvlc_InternalCleanup( libvlc_int_t *p_libvlc )
565 {
566     libvlc_priv_t *priv = libvlc_priv (p_libvlc);
567
568     /* Ask the interfaces to stop and destroy them */
569     msg_Dbg( p_libvlc, "removing all interfaces" );
570     libvlc_Quit( p_libvlc );
571     intf_DestroyAll( p_libvlc );
572
573 #ifdef ENABLE_VLM
574     /* Destroy VLM if created in libvlc_InternalInit */
575     if( priv->p_vlm )
576     {
577         vlm_Delete( priv->p_vlm );
578     }
579 #endif
580
581 #if defined(MEDIA_LIBRARY)
582     media_library_t* p_ml = priv->p_ml;
583     if( p_ml )
584     {
585         ml_Destroy( VLC_OBJECT( p_ml ) );
586         vlc_object_release( p_ml );
587         libvlc_priv(p_playlist->p_libvlc)->p_ml = NULL;
588     }
589 #endif
590
591     /* Free playlist now, all threads are gone */
592     playlist_t *p_playlist = libvlc_priv (p_libvlc)->p_playlist;
593     if( p_playlist != NULL )
594         playlist_Destroy( p_playlist );
595
596     msg_Dbg( p_libvlc, "removing stats" );
597
598 #if !defined( WIN32 ) && !defined( __OS2__ )
599     char* psz_pidfile = NULL;
600
601     if( b_daemon )
602     {
603         psz_pidfile = var_CreateGetNonEmptyString( p_libvlc, "pidfile" );
604         if( psz_pidfile != NULL )
605         {
606             msg_Dbg( p_libvlc, "removing pid file %s", psz_pidfile );
607             if( unlink( psz_pidfile ) == -1 )
608             {
609                 msg_Dbg( p_libvlc, "removing pid file %s: %m",
610                         psz_pidfile );
611             }
612         }
613         free( psz_pidfile );
614     }
615 #endif
616
617     /* Save the configuration */
618     if( !var_InheritBool( p_libvlc, "ignore-config" ) )
619         config_AutoSaveConfigFile( VLC_OBJECT(p_libvlc) );
620
621     /* Free module bank. It is refcounted, so we call this each time  */
622     module_EndBank (true);
623
624     vlc_DeinitActions( p_libvlc, priv->actions );
625 #if defined(WIN32) || defined(__OS2__)
626     system_End( );
627 #endif
628 }
629
630 /**
631  * Destroy everything.
632  * This function requests the running threads to finish, waits for their
633  * termination, and destroys their structure.
634  * It stops the thread systems: no instance can run after this has run
635  * \param p_libvlc the instance to destroy
636  */
637 void libvlc_InternalDestroy( libvlc_int_t *p_libvlc )
638 {
639     libvlc_priv_t *priv = libvlc_priv( p_libvlc );
640
641     /* Destroy mutexes */
642     vlc_ExitDestroy( &priv->exit );
643     vlc_mutex_destroy( &priv->ml_lock );
644
645     assert( atomic_load(&(vlc_internals(p_libvlc)->refs)) == 1 );
646     vlc_object_release( p_libvlc );
647 }
648
649 /**
650  * Add an interface plugin and run it
651  */
652 int libvlc_InternalAddIntf( libvlc_int_t *p_libvlc, char const *psz_module )
653 {
654     if( !p_libvlc )
655         return VLC_EGENERIC;
656
657     if( !psz_module ) /* requesting the default interface */
658     {
659         char *psz_interface = var_CreateGetNonEmptyString( p_libvlc, "intf" );
660         if( !psz_interface ) /* "intf" has not been set */
661         {
662 #if !defined( WIN32 ) && !defined( __OS2__ )
663             if( b_daemon )
664                  /* Daemon mode hack.
665                   * We prefer the dummy interface if none is specified. */
666                 psz_module = "dummy";
667             else
668 #endif
669                 msg_Info( p_libvlc, "%s",
670                           _("Running vlc with the default interface. "
671                             "Use 'cvlc' to use vlc without interface.") );
672         }
673         free( psz_interface );
674         var_Destroy( p_libvlc, "intf" );
675     }
676
677     /* Try to create the interface */
678     int ret = intf_Create( p_libvlc, psz_module ? psz_module : "$intf" );
679     if( ret )
680         msg_Err( p_libvlc, "interface \"%s\" initialization failed",
681                  psz_module ? psz_module : "default" );
682     return ret;
683 }
684
685 /*****************************************************************************
686  * GetFilenames: parse command line options which are not flags
687  *****************************************************************************
688  * Parse command line for input files as well as their associated options.
689  * An option always follows its associated input and begins with a ":".
690  *****************************************************************************/
691 static void GetFilenames( libvlc_int_t *p_vlc, unsigned n,
692                           const char *const args[] )
693 {
694     while( n > 0 )
695     {
696         /* Count the input options */
697         unsigned i_options = 0;
698
699         while( args[--n][0] == ':' )
700         {
701             i_options++;
702             if( n == 0 )
703             {
704                 msg_Warn( p_vlc, "options %s without item", args[n] );
705                 return; /* syntax!? */
706             }
707         }
708
709         char *mrl = NULL;
710         if( strstr( args[n], "://" ) == NULL )
711         {
712             mrl = vlc_path2uri( args[n], NULL );
713             if( !mrl )
714                 continue;
715         }
716
717         playlist_AddExt( pl_Get( p_vlc ), (mrl != NULL) ? mrl : args[n], NULL,
718                          PLAYLIST_INSERT, 0, -1, i_options,
719                          ( i_options ? &args[n + 1] : NULL ),
720                          VLC_INPUT_OPTION_TRUSTED, true, pl_Unlocked );
721         free( mrl );
722     }
723 }