]> git.sesse.net Git - vlc/blob - src/libvlc.c
Remove useless <unistd.h> inclusion in core
[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 "../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_LOCALE_H
53 #   include <locale.h>
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_aout.h>
67 #include "audio_output/aout_internal.h"
68
69 #include <vlc_charset.h>
70 #include <vlc_fs.h>
71 #include <vlc_cpu.h>
72 #include <vlc_url.h>
73 #include <vlc_atomic.h>
74 #include <vlc_modules.h>
75
76 #include "libvlc.h"
77
78 #include "playlist/playlist_internal.h"
79
80 #include <vlc_vlm.h>
81
82 #ifdef __APPLE__
83 # include <libkern/OSAtomic.h>
84 #endif
85
86 #include <assert.h>
87
88 /*****************************************************************************
89  * The evil global variables. We handle them with care, don't worry.
90  *****************************************************************************/
91
92 #if !defined(WIN32) && !defined(__OS2__)
93 static bool b_daemon = false;
94 #endif
95
96 #undef vlc_gc_init
97 #undef vlc_hold
98 #undef vlc_release
99
100 /**
101  * Atomically set the reference count to 1.
102  * @param p_gc reference counted object
103  * @param pf_destruct destruction calback
104  * @return p_gc.
105  */
106 void *vlc_gc_init (gc_object_t *p_gc, void (*pf_destruct) (gc_object_t *))
107 {
108     /* There is no point in using the GC if there is no destructor... */
109     assert (pf_destruct);
110     p_gc->pf_destructor = pf_destruct;
111
112     vlc_atomic_set (&p_gc->refs, 1);
113     return p_gc;
114 }
115
116 /**
117  * Atomically increment the reference count.
118  * @param p_gc reference counted object
119  * @return p_gc.
120  */
121 void *vlc_hold (gc_object_t * p_gc)
122 {
123     uintptr_t refs;
124
125     assert( p_gc );
126     refs = vlc_atomic_inc (&p_gc->refs);
127     assert (refs != 1); /* there had to be a reference already */
128     return p_gc;
129 }
130
131 /**
132  * Atomically decrement the reference count and, if it reaches zero, destroy.
133  * @param p_gc reference counted object.
134  */
135 void vlc_release (gc_object_t *p_gc)
136 {
137     uintptr_t refs;
138
139     assert( p_gc );
140     refs = vlc_atomic_dec (&p_gc->refs);
141     assert (refs != (uintptr_t)(-1)); /* reference underflow?! */
142     if (refs == 0)
143         p_gc->pf_destructor (p_gc);
144 }
145
146 /*****************************************************************************
147  * Local prototypes
148  *****************************************************************************/
149 #if defined( ENABLE_NLS ) && (defined (__APPLE__) || defined (WIN32)) && \
150     ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
151 static void SetLanguage   ( char const * );
152 #endif
153 static void GetFilenames  ( libvlc_int_t *, unsigned, const char *const [] );
154
155 /**
156  * Allocate a libvlc instance, initialize global data if needed
157  * It also initializes the threading system
158  */
159 libvlc_int_t * libvlc_InternalCreate( void )
160 {
161     libvlc_int_t *p_libvlc;
162     libvlc_priv_t *priv;
163     char *psz_env = NULL;
164
165     /* Now that the thread system is initialized, we don't have much, but
166      * at least we have variables */
167     /* Allocate a libvlc instance object */
168     p_libvlc = vlc_custom_create( (vlc_object_t *)NULL, sizeof (*priv),
169                                   "libvlc" );
170     if( p_libvlc == NULL )
171         return NULL;
172
173     priv = libvlc_priv (p_libvlc);
174     priv->p_playlist = NULL;
175     priv->p_ml = NULL;
176     priv->p_dialog_provider = NULL;
177     priv->p_vlm = NULL;
178
179     /* Find verbosity from VLC_VERBOSE environment variable */
180     psz_env = getenv( "VLC_VERBOSE" );
181     if( psz_env != NULL )
182         priv->i_verbose = atoi( psz_env );
183     else
184         priv->i_verbose = 3;
185 #if defined( HAVE_ISATTY ) && !defined( WIN32 )
186     priv->b_color = isatty( 2 ); /* 2 is for stderr */
187 #else
188     priv->b_color = false;
189 #endif
190
191     /* Initialize mutexes */
192     vlc_mutex_init( &priv->ml_lock );
193     vlc_mutex_init( &priv->timer_lock );
194     vlc_ExitInit( &priv->exit );
195
196     return p_libvlc;
197 }
198
199 /**
200  * Initialize a libvlc instance
201  * This function initializes a previously allocated libvlc instance:
202  *  - CPU detection
203  *  - gettext initialization
204  *  - message queue, module bank and playlist initialization
205  *  - configuration and commandline parsing
206  */
207 int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
208                          const char *ppsz_argv[] )
209 {
210     libvlc_priv_t *priv = libvlc_priv (p_libvlc);
211     char *       psz_modules = NULL;
212     char *       psz_parser = NULL;
213     char *       psz_control = NULL;
214     playlist_t  *p_playlist = NULL;
215     char        *psz_val;
216
217     /* System specific initialization code */
218     system_Init();
219
220     /* Initialize the module bank and load the configuration of the
221      * main module. We need to do this at this stage to be able to display
222      * a short help if required by the user. (short help == main module
223      * options) */
224     module_InitBank ();
225
226     /* Get command line options that affect module loading. */
227     if( config_LoadCmdLine( p_libvlc, i_argc, ppsz_argv, NULL ) )
228     {
229         module_EndBank (false);
230         return VLC_EGENERIC;
231     }
232     priv->i_verbose = var_InheritInteger( p_libvlc, "verbose" );
233
234     /* Announce who we are (TODO: only first instance?) */
235     msg_Dbg( p_libvlc, "VLC media player - %s", VERSION_MESSAGE );
236     msg_Dbg( p_libvlc, "%s", COPYRIGHT_MESSAGE );
237     msg_Dbg( p_libvlc, "revision %s", psz_vlc_changeset );
238     msg_Dbg( p_libvlc, "configured with %s", CONFIGURE_LINE );
239
240     /* Load the builtins and plugins into the module_bank.
241      * We have to do it before config_Load*() because this also gets the
242      * list of configuration options exported by each module and loads their
243      * default values. */
244     size_t module_count = module_LoadPlugins (p_libvlc);
245
246     /*
247      * Override default configuration with config file settings
248      */
249     if( !var_InheritBool( p_libvlc, "ignore-config" ) )
250     {
251         if( var_InheritBool( p_libvlc, "reset-config" ) )
252             config_SaveConfigFile( p_libvlc ); /* Save default config */
253         else
254             config_LoadConfigFile( p_libvlc );
255     }
256
257     /*
258      * Override configuration with command line settings
259      */
260     int vlc_optind;
261     if( config_LoadCmdLine( p_libvlc, i_argc, ppsz_argv, &vlc_optind ) )
262     {
263 #ifdef WIN32
264         MessageBox (NULL, TEXT("The command line options could not be parsed.\n"
265                     "Make sure they are valid."), TEXT("VLC media player"),
266                     MB_OK|MB_ICONERROR);
267 #endif
268         module_EndBank (true);
269         return VLC_EGENERIC;
270     }
271     priv->i_verbose = var_InheritInteger( p_libvlc, "verbose" );
272
273     /*
274      * Support for gettext
275      */
276 #if defined( ENABLE_NLS ) \
277      && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
278 # if defined (WIN32) || defined (__APPLE__)
279     /* Check if the user specified a custom language */
280     char *lang = var_InheritString (p_libvlc, "language");
281     if (lang != NULL && strcmp (lang, "auto"))
282         SetLanguage (lang);
283     free (lang);
284 # endif
285     vlc_bindtextdomain (PACKAGE_NAME);
286 #endif
287     /*xgettext: Translate "C" to the language code: "fr", "en_GB", "nl", "ru"... */
288     msg_Dbg( p_libvlc, "translation test: code is \"%s\"", _("C") );
289
290     if (config_PrintHelp (VLC_OBJECT(p_libvlc)))
291     {
292         module_EndBank (true);
293         return VLC_EEXITSUCCESS;
294     }
295
296     if( module_count <= 1 )
297     {
298         msg_Err( p_libvlc, "No plugins found! Check your VLC installation.");
299         module_EndBank (true);
300         return VLC_ENOITEM;
301     }
302
303 #ifdef HAVE_DAEMON
304     /* Check for daemon mode */
305     if( var_InheritBool( p_libvlc, "daemon" ) )
306     {
307         char *psz_pidfile = NULL;
308
309         if( daemon( 1, 0) != 0 )
310         {
311             msg_Err( p_libvlc, "Unable to fork vlc to daemon mode" );
312             module_EndBank (true);
313             return VLC_EEXIT;
314         }
315         b_daemon = true;
316
317         /* lets check if we need to write the pidfile */
318         psz_pidfile = var_CreateGetNonEmptyString( p_libvlc, "pidfile" );
319         if( psz_pidfile != NULL )
320         {
321             FILE *pidfile;
322             pid_t i_pid = getpid ();
323             msg_Dbg( p_libvlc, "PID is %d, writing it to %s",
324                                i_pid, psz_pidfile );
325             pidfile = vlc_fopen( psz_pidfile,"w" );
326             if( pidfile != NULL )
327             {
328                 utf8_fprintf( pidfile, "%d", (int)i_pid );
329                 fclose( pidfile );
330             }
331             else
332             {
333                 msg_Err( p_libvlc, "cannot open pid file for writing: %s (%m)",
334                          psz_pidfile );
335             }
336         }
337         free( psz_pidfile );
338     }
339 #endif
340
341 /* FIXME: could be replaced by using Unix sockets */
342 #ifdef HAVE_DBUS
343     dbus_threads_init_default();
344
345     if( var_InheritBool( p_libvlc, "one-instance" )
346     || ( var_InheritBool( p_libvlc, "one-instance-when-started-from-file" )
347       && var_InheritBool( p_libvlc, "started-from-file" ) ) )
348     {
349         /* Initialise D-Bus interface, check for other instances */
350         DBusConnection  *p_conn = NULL;
351         DBusError       dbus_error;
352
353         dbus_error_init( &dbus_error );
354
355         /* connect to the session bus */
356         p_conn = dbus_bus_get( DBUS_BUS_SESSION, &dbus_error );
357         if( !p_conn )
358         {
359             msg_Err( p_libvlc, "Failed to connect to D-Bus session daemon: %s",
360                     dbus_error.message );
361             dbus_error_free( &dbus_error );
362         }
363         else
364         {
365             /* check if VLC is available on the bus
366              * if not: D-Bus control is not enabled on the other
367              * instance and we can't pass MRLs to it */
368             DBusMessage *p_test_msg   = NULL;
369             DBusMessage *p_test_reply = NULL;
370
371             p_test_msg =  dbus_message_new_method_call(
372                     "org.mpris.MediaPlayer2.vlc", "/org/mpris/MediaPlayer2",
373                     "org.freedesktop.DBus.Introspectable", "Introspect" );
374
375             /* block until a reply arrives */
376             p_test_reply = dbus_connection_send_with_reply_and_block(
377                     p_conn, p_test_msg, -1, &dbus_error );
378             dbus_message_unref( p_test_msg );
379             if( p_test_reply == NULL )
380             {
381                 dbus_error_free( &dbus_error );
382                 msg_Dbg( p_libvlc, "No Media Player is running. "
383                         "Continuing normally." );
384             }
385             else
386             {
387                 int i_input;
388                 DBusMessage* p_dbus_msg = NULL;
389                 DBusMessageIter dbus_args;
390                 DBusPendingCall* p_dbus_pending = NULL;
391                 dbus_bool_t b_play;
392
393                 dbus_message_unref( p_test_reply );
394                 msg_Warn( p_libvlc, "Another Media Player is running. Exiting");
395
396                 for( i_input = vlc_optind; i_input < i_argc;i_input++ )
397                 {
398                     /* Skip input options, we can't pass them through D-Bus */
399                     if( ppsz_argv[i_input][0] == ':' )
400                     {
401                         msg_Warn( p_libvlc, "Ignoring option %s",
402                                   ppsz_argv[i_input] );
403                         continue;
404                     }
405
406                     /* We need to resolve relative paths in this instance */
407                     char *psz_mrl = make_URI( ppsz_argv[i_input], NULL );
408                     const char *psz_after_track = "/";
409
410                     if( psz_mrl == NULL )
411                         continue;
412                     msg_Dbg( p_libvlc, "Adds %s to the running Media Player",
413                              psz_mrl );
414
415                     p_dbus_msg = dbus_message_new_method_call(
416                         "org.mpris.MediaPlayer2.vlc", "/org/mpris/MediaPlayer2",
417                         "org.mpris.MediaPlayer2.TrackList", "AddTrack" );
418
419                     if ( NULL == p_dbus_msg )
420                     {
421                         msg_Err( p_libvlc, "D-Bus problem" );
422                         free( psz_mrl );
423                         system_End( );
424                         exit( 1 );
425                     }
426
427                     /* append MRLs */
428                     dbus_message_iter_init_append( p_dbus_msg, &dbus_args );
429                     if ( !dbus_message_iter_append_basic( &dbus_args,
430                                 DBUS_TYPE_STRING, &psz_mrl ) )
431                     {
432                         dbus_message_unref( p_dbus_msg );
433                         free( psz_mrl );
434                         system_End( );
435                         exit( 1 );
436                     }
437                     free( psz_mrl );
438
439                     if( !dbus_message_iter_append_basic( &dbus_args,
440                                 DBUS_TYPE_OBJECT_PATH, &psz_after_track ) )
441                     {
442                         dbus_message_unref( p_dbus_msg );
443                         system_End( );
444                         exit( 1 );
445                     }
446
447                     b_play = TRUE;
448                     if( var_InheritBool( p_libvlc, "playlist-enqueue" ) )
449                         b_play = FALSE;
450
451                     if ( !dbus_message_iter_append_basic( &dbus_args,
452                                 DBUS_TYPE_BOOLEAN, &b_play ) )
453                     {
454                         dbus_message_unref( p_dbus_msg );
455                         system_End( );
456                         exit( 1 );
457                     }
458
459                     /* send message and get a handle for a reply */
460                     if ( !dbus_connection_send_with_reply ( p_conn,
461                                 p_dbus_msg, &p_dbus_pending, -1 ) )
462                     {
463                         msg_Err( p_libvlc, "D-Bus problem" );
464                         dbus_message_unref( p_dbus_msg );
465                         system_End( );
466                         exit( 1 );
467                     }
468
469                     if ( NULL == p_dbus_pending )
470                     {
471                         msg_Err( p_libvlc, "D-Bus problem" );
472                         dbus_message_unref( p_dbus_msg );
473                         system_End( );
474                         exit( 1 );
475                     }
476                     dbus_connection_flush( p_conn );
477                     dbus_message_unref( p_dbus_msg );
478                     /* block until we receive a reply */
479                     dbus_pending_call_block( p_dbus_pending );
480                     dbus_pending_call_unref( p_dbus_pending );
481                 } /* processes all command line MRLs */
482
483                 /* bye bye */
484                 system_End( );
485                 exit( 0 );
486             }
487         }
488         /* we unreference the connection when we've finished with it */
489         if( p_conn ) dbus_connection_unref( p_conn );
490     }
491 #endif
492
493     /*
494      * Message queue options
495      */
496     /* Last chance to set the verbosity. Once we start interfaces and other
497      * threads, verbosity becomes read-only. */
498     var_Create( p_libvlc, "verbose", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
499     if( var_InheritBool( p_libvlc, "quiet" ) )
500     {
501         var_SetInteger( p_libvlc, "verbose", -1 );
502         priv->i_verbose = -1;
503     }
504     vlc_threads_setup( p_libvlc );
505
506     if( priv->b_color )
507         priv->b_color = var_InheritBool( p_libvlc, "color" );
508
509     vlc_CPU_dump( VLC_OBJECT(p_libvlc) );
510     /*
511      * Choose the best memcpy module
512      */
513     priv->p_memcpy_module = module_need( p_libvlc, "memcpy", "$memcpy", false );
514     /* Avoid being called "memcpy":*/
515     vlc_object_set_name( p_libvlc, "main" );
516
517     priv->b_stats = var_InheritBool( p_libvlc, "stats" );
518     priv->i_timers = 0;
519     priv->pp_timers = NULL;
520
521     /*
522      * Initialize hotkey handling
523      */
524     priv->actions = vlc_InitActions( p_libvlc );
525
526     /* Create a variable for showing the fullscreen interface */
527     var_Create( p_libvlc, "intf-toggle-fscontrol", VLC_VAR_BOOL );
528     var_SetBool( p_libvlc, "intf-toggle-fscontrol", true );
529
530     /* Create a variable for the Boss Key */
531     var_Create( p_libvlc, "intf-boss", VLC_VAR_VOID );
532
533     /* Create a variable for showing the main interface */
534     var_Create( p_libvlc, "intf-show", VLC_VAR_BOOL );
535
536     /* Create a variable for showing the right click menu */
537     var_Create( p_libvlc, "intf-popupmenu", VLC_VAR_BOOL );
538
539     /* variables for signalling creation of new files */
540     var_Create( p_libvlc, "snapshot-file", VLC_VAR_STRING );
541     var_Create( p_libvlc, "record-file", VLC_VAR_STRING );
542
543     /* some default internal settings */
544     var_Create( p_libvlc, "window", VLC_VAR_STRING );
545     var_Create( p_libvlc, "user-agent", VLC_VAR_STRING );
546     var_SetString( p_libvlc, "user-agent", "(LibVLC "VERSION")" );
547
548     /* Initialize playlist and get commandline files */
549     p_playlist = playlist_Create( VLC_OBJECT(p_libvlc) );
550     if( !p_playlist )
551     {
552         msg_Err( p_libvlc, "playlist initialization failed" );
553         if( priv->p_memcpy_module != NULL )
554         {
555             module_unneed( p_libvlc, priv->p_memcpy_module );
556         }
557         module_EndBank (true);
558         return VLC_EGENERIC;
559     }
560
561     /* System specific configuration */
562     system_Configure( p_libvlc, i_argc - vlc_optind, ppsz_argv + vlc_optind );
563
564 #if defined(MEDIA_LIBRARY)
565     /* Get the ML */
566     if( var_GetBool( p_libvlc, "load-media-library-on-startup" ) )
567     {
568         priv->p_ml = ml_Create( VLC_OBJECT( p_libvlc ), NULL );
569         if( !priv->p_ml )
570         {
571             msg_Err( p_libvlc, "ML initialization failed" );
572             return VLC_EGENERIC;
573         }
574     }
575     else
576     {
577         priv->p_ml = NULL;
578     }
579 #endif
580
581     /* Add service discovery modules */
582     psz_modules = var_InheritString( p_libvlc, "services-discovery" );
583     if( psz_modules )
584     {
585         char *p = psz_modules, *m;
586         while( ( m = strsep( &p, " :," ) ) != NULL )
587             playlist_ServicesDiscoveryAdd( p_playlist, m );
588         free( psz_modules );
589     }
590
591 #ifdef ENABLE_VLM
592     /* Initialize VLM if vlm-conf is specified */
593     psz_parser = var_CreateGetNonEmptyString( p_libvlc, "vlm-conf" );
594     if( psz_parser )
595     {
596         priv->p_vlm = vlm_New( p_libvlc );
597         if( !priv->p_vlm )
598             msg_Err( p_libvlc, "VLM initialization failed" );
599     }
600     free( psz_parser );
601 #endif
602
603     /*
604      * Load background interfaces
605      */
606     psz_modules = var_CreateGetNonEmptyString( p_libvlc, "extraintf" );
607     psz_control = var_CreateGetNonEmptyString( p_libvlc, "control" );
608
609     if( psz_modules && psz_control )
610     {
611         char* psz_tmp;
612         if( asprintf( &psz_tmp, "%s:%s", psz_modules, psz_control ) != -1 )
613         {
614             free( psz_modules );
615             psz_modules = psz_tmp;
616         }
617     }
618     else if( psz_control )
619     {
620         free( psz_modules );
621         psz_modules = strdup( psz_control );
622     }
623
624     psz_parser = psz_modules;
625     while ( psz_parser && *psz_parser )
626     {
627         char *psz_module, *psz_temp;
628         psz_module = psz_parser;
629         psz_parser = strchr( psz_module, ':' );
630         if ( psz_parser )
631         {
632             *psz_parser = '\0';
633             psz_parser++;
634         }
635         if( asprintf( &psz_temp, "%s,none", psz_module ) != -1)
636         {
637             intf_Create( p_libvlc, psz_temp );
638             free( psz_temp );
639         }
640     }
641     free( psz_modules );
642     free( psz_control );
643
644     /*
645      * Always load the hotkeys interface if it exists
646      */
647     intf_Create( p_libvlc, "hotkeys,none" );
648
649 #ifdef HAVE_DBUS
650     /* loads dbus control interface if in one-instance mode
651      * we do it only when playlist exists, because dbus module needs it */
652     if( var_InheritBool( p_libvlc, "one-instance" )
653      || ( var_InheritBool( p_libvlc, "one-instance-when-started-from-file" )
654        && var_InheritBool( p_libvlc, "started-from-file" ) ) )
655         intf_Create( p_libvlc, "dbus,none" );
656
657 # if !defined (HAVE_MAEMO)
658     /* Prevents the power management daemon from suspending the system
659      * when VLC is active */
660     if( var_InheritBool( p_libvlc, "inhibit" ) > 0 )
661         intf_Create( p_libvlc, "inhibit,none" );
662 # endif
663 #endif
664
665     if( var_InheritBool( p_libvlc, "file-logging" ) &&
666         !var_InheritBool( p_libvlc, "syslog" ) )
667     {
668         intf_Create( p_libvlc, "logger,none" );
669     }
670 #ifdef HAVE_SYSLOG_H
671     if( var_InheritBool( p_libvlc, "syslog" ) )
672     {
673         char *logmode = var_CreateGetNonEmptyString( p_libvlc, "logmode" );
674         var_SetString( p_libvlc, "logmode", "syslog" );
675         intf_Create( p_libvlc, "logger,none" );
676
677         if( logmode )
678         {
679             var_SetString( p_libvlc, "logmode", logmode );
680             free( logmode );
681         }
682         var_Destroy( p_libvlc, "logmode" );
683     }
684 #endif
685
686     if( var_InheritBool( p_libvlc, "network-synchronisation") )
687     {
688         intf_Create( p_libvlc, "netsync,none" );
689     }
690
691 #ifdef __APPLE__
692     var_Create( p_libvlc, "drawable-view-top", VLC_VAR_INTEGER );
693     var_Create( p_libvlc, "drawable-view-left", VLC_VAR_INTEGER );
694     var_Create( p_libvlc, "drawable-view-bottom", VLC_VAR_INTEGER );
695     var_Create( p_libvlc, "drawable-view-right", VLC_VAR_INTEGER );
696     var_Create( p_libvlc, "drawable-clip-top", VLC_VAR_INTEGER );
697     var_Create( p_libvlc, "drawable-clip-left", VLC_VAR_INTEGER );
698     var_Create( p_libvlc, "drawable-clip-bottom", VLC_VAR_INTEGER );
699     var_Create( p_libvlc, "drawable-clip-right", VLC_VAR_INTEGER );
700     var_Create( p_libvlc, "drawable-nsobject", VLC_VAR_ADDRESS );
701 #endif
702 #if defined (WIN32) || defined (__OS2__)
703     var_Create( p_libvlc, "drawable-hwnd", VLC_VAR_INTEGER );
704 #endif
705
706     /*
707      * Get input filenames given as commandline arguments.
708      * We assume that the remaining parameters are filenames
709      * and their input options.
710      */
711     GetFilenames( p_libvlc, i_argc - vlc_optind, ppsz_argv + vlc_optind );
712
713     /*
714      * Get --open argument
715      */
716     psz_val = var_InheritString( p_libvlc, "open" );
717     if ( psz_val != NULL )
718     {
719         playlist_AddExt( p_playlist, psz_val, NULL, PLAYLIST_INSERT, 0,
720                          -1, 0, NULL, 0, true, pl_Unlocked );
721         free( psz_val );
722     }
723
724     return VLC_SUCCESS;
725 }
726
727 /**
728  * Cleanup a libvlc instance. The instance is not completely deallocated
729  * \param p_libvlc the instance to clean
730  */
731 void libvlc_InternalCleanup( libvlc_int_t *p_libvlc )
732 {
733     libvlc_priv_t *priv = libvlc_priv (p_libvlc);
734     playlist_t    *p_playlist = libvlc_priv (p_libvlc)->p_playlist;
735
736     /* Deactivate the playlist */
737     msg_Dbg( p_libvlc, "deactivating the playlist" );
738     pl_Deactivate( p_libvlc );
739
740     /* Remove all services discovery */
741     msg_Dbg( p_libvlc, "removing all services discovery tasks" );
742     playlist_ServicesDiscoveryKillAll( p_playlist );
743
744     /* Ask the interfaces to stop and destroy them */
745     msg_Dbg( p_libvlc, "removing all interfaces" );
746     libvlc_Quit( p_libvlc );
747     intf_DestroyAll( p_libvlc );
748
749 #ifdef ENABLE_VLM
750     /* Destroy VLM if created in libvlc_InternalInit */
751     if( priv->p_vlm )
752     {
753         vlm_Delete( priv->p_vlm );
754     }
755 #endif
756
757 #if defined(MEDIA_LIBRARY)
758     media_library_t* p_ml = priv->p_ml;
759     if( p_ml )
760     {
761         ml_Destroy( VLC_OBJECT( p_ml ) );
762         vlc_object_release( p_ml );
763         libvlc_priv(p_playlist->p_libvlc)->p_ml = NULL;
764     }
765 #endif
766
767     /* Free playlist now, all threads are gone */
768     playlist_Destroy( p_playlist );
769     stats_TimersDumpAll( p_libvlc );
770     stats_TimersCleanAll( p_libvlc );
771
772     msg_Dbg( p_libvlc, "removing stats" );
773
774 #if !defined( WIN32 ) && !defined( __OS2__ )
775     char* psz_pidfile = NULL;
776
777     if( b_daemon )
778     {
779         psz_pidfile = var_CreateGetNonEmptyString( p_libvlc, "pidfile" );
780         if( psz_pidfile != NULL )
781         {
782             msg_Dbg( p_libvlc, "removing pid file %s", psz_pidfile );
783             if( unlink( psz_pidfile ) == -1 )
784             {
785                 msg_Dbg( p_libvlc, "removing pid file %s: %m",
786                         psz_pidfile );
787             }
788         }
789         free( psz_pidfile );
790     }
791 #endif
792
793     if( priv->p_memcpy_module )
794     {
795         module_unneed( p_libvlc, priv->p_memcpy_module );
796         priv->p_memcpy_module = NULL;
797     }
798
799     /* Save the configuration */
800     if( !var_InheritBool( p_libvlc, "ignore-config" ) )
801         config_AutoSaveConfigFile( VLC_OBJECT(p_libvlc) );
802
803     /* Free module bank. It is refcounted, so we call this each time  */
804     module_EndBank (true);
805
806     vlc_DeinitActions( p_libvlc, priv->actions );
807 }
808
809 /**
810  * Destroy everything.
811  * This function requests the running threads to finish, waits for their
812  * termination, and destroys their structure.
813  * It stops the thread systems: no instance can run after this has run
814  * \param p_libvlc the instance to destroy
815  */
816 void libvlc_InternalDestroy( libvlc_int_t *p_libvlc )
817 {
818     libvlc_priv_t *priv = libvlc_priv( p_libvlc );
819
820     system_End( );
821
822     /* Destroy mutexes */
823     vlc_ExitDestroy( &priv->exit );
824     vlc_mutex_destroy( &priv->timer_lock );
825     vlc_mutex_destroy( &priv->ml_lock );
826
827 #ifndef NDEBUG /* Hack to dump leaked objects tree */
828     if( vlc_internals( p_libvlc )->i_refcount > 1 )
829         while( vlc_internals( p_libvlc )->i_refcount > 0 )
830             vlc_object_release( p_libvlc );
831 #endif
832
833     assert( vlc_internals( p_libvlc )->i_refcount == 1 );
834     vlc_object_release( p_libvlc );
835 }
836
837 /**
838  * Add an interface plugin and run it
839  */
840 int libvlc_InternalAddIntf( libvlc_int_t *p_libvlc, char const *psz_module )
841 {
842     if( !p_libvlc )
843         return VLC_EGENERIC;
844
845     if( !psz_module ) /* requesting the default interface */
846     {
847         char *psz_interface = var_CreateGetNonEmptyString( p_libvlc, "intf" );
848         if( !psz_interface ) /* "intf" has not been set */
849         {
850 #if !defined( WIN32 ) && !defined( __OS2__ )
851             if( b_daemon )
852                  /* Daemon mode hack.
853                   * We prefer the dummy interface if none is specified. */
854                 psz_module = "dummy";
855             else
856 #endif
857                 msg_Info( p_libvlc, "%s",
858                           _("Running vlc with the default interface. "
859                             "Use 'cvlc' to use vlc without interface.") );
860         }
861         free( psz_interface );
862         var_Destroy( p_libvlc, "intf" );
863     }
864
865     /* Try to create the interface */
866     int ret = intf_Create( p_libvlc, psz_module ? psz_module : "$intf" );
867     if( ret )
868         msg_Err( p_libvlc, "interface \"%s\" initialization failed",
869                  psz_module ? psz_module : "default" );
870     return ret;
871 }
872
873 #if defined( ENABLE_NLS ) && (defined (__APPLE__) || defined (WIN32)) && \
874     ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
875 /*****************************************************************************
876  * SetLanguage: set the interface language.
877  *****************************************************************************
878  * We set the LC_MESSAGES locale category for interface messages and buttons,
879  * as well as the LC_CTYPE category for string sorting and possible wide
880  * character support.
881  *****************************************************************************/
882 static void SetLanguage ( const char *psz_lang )
883 {
884 #ifdef __APPLE__
885     /* I need that under Darwin, please check it doesn't disturb
886      * other platforms. --Meuuh */
887     setenv( "LANG", psz_lang, 1 );
888
889 #else
890     /* We set LC_ALL manually because it is the only way to set
891      * the language at runtime under eg. Windows. Beware that this
892      * makes the environment unconsistent when libvlc is unloaded and
893      * should probably be moved to a safer place like vlc.c. */
894     setenv( "LC_ALL", psz_lang, 1 );
895
896 #endif
897
898     setlocale( LC_ALL, psz_lang );
899 }
900 #endif
901
902 /*****************************************************************************
903  * GetFilenames: parse command line options which are not flags
904  *****************************************************************************
905  * Parse command line for input files as well as their associated options.
906  * An option always follows its associated input and begins with a ":".
907  *****************************************************************************/
908 static void GetFilenames( libvlc_int_t *p_vlc, unsigned n,
909                           const char *const args[] )
910 {
911     while( n > 0 )
912     {
913         /* Count the input options */
914         unsigned i_options = 0;
915
916         while( args[--n][0] == ':' )
917         {
918             i_options++;
919             if( n == 0 )
920             {
921                 msg_Warn( p_vlc, "options %s without item", args[n] );
922                 return; /* syntax!? */
923             }
924         }
925
926         char *mrl = make_URI( args[n], NULL );
927         if( !mrl )
928             continue;
929
930         playlist_AddExt( pl_Get( p_vlc ), mrl, NULL, PLAYLIST_INSERT,
931                 0, -1, i_options, ( i_options ? &args[n + 1] : NULL ),
932                 VLC_INPUT_OPTION_TRUSTED, true, pl_Unlocked );
933         free( mrl );
934     }
935 }