1 /*****************************************************************************
2 * engine.c : Run the playlist and handle its control
3 *****************************************************************************
4 * Copyright (C) 1999-2007 the VideoLAN team
7 * Authors: Samuel Hocevar <sam@zoy.org>
8 * Clément Stenac <zorglub@videolan.org>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
30 #include <vlc_common.h>
32 #include <vlc_playlist.h>
33 #include <vlc_interface.h>
34 #include "playlist_internal.h"
35 #include "stream_output/stream_output.h" /* sout_DeleteInstance */
37 /*****************************************************************************
39 *****************************************************************************/
40 static void VariablesInit( playlist_t *p_playlist );
41 static void playlist_Destructor( vlc_object_t * p_this );
43 static int RandomCallback( vlc_object_t *p_this, char const *psz_cmd,
44 vlc_value_t oldval, vlc_value_t newval, void *a )
46 (void)psz_cmd; (void)oldval; (void)newval; (void)a;
48 ((playlist_t*)p_this)->b_reset_currently_playing = true;
49 playlist_Signal( ((playlist_t*)p_this) );
56 * Create a playlist structure.
57 * \param p_parent the vlc object that is to be the parent of this playlist
58 * \return a pointer to the created playlist, or NULL on error
60 playlist_t * playlist_Create( vlc_object_t *p_parent )
62 static const char playlist_name[] = "playlist";
63 playlist_t *p_playlist;
66 /* Allocate structure */
67 p_playlist = vlc_custom_create( p_parent, sizeof( *p_playlist ),
68 VLC_OBJECT_PLAYLIST, playlist_name );
71 msg_Err( p_parent, "out of memory" );
75 TAB_INIT( p_playlist->i_sds, p_playlist->pp_sds );
77 libvlc_priv(p_parent->p_libvlc)->p_playlist = p_playlist;
79 VariablesInit( p_playlist );
81 /* Initialise data structures */
82 vlc_mutex_init( &p_playlist->gc_lock );
83 p_playlist->i_last_playlist_id = 0;
84 p_playlist->p_input = NULL;
86 p_playlist->gc_date = 0;
87 p_playlist->b_cant_sleep = false;
89 ARRAY_INIT( p_playlist->items );
90 ARRAY_INIT( p_playlist->all_items );
91 ARRAY_INIT( p_playlist->current );
93 p_playlist->i_current_index = 0;
94 p_playlist->b_reset_currently_playing = true;
95 p_playlist->last_rebuild_date = 0;
97 p_playlist->b_tree = var_CreateGetBool( p_playlist, "playlist-tree" );
99 p_playlist->b_doing_ml = false;
101 p_playlist->b_auto_preparse =
102 var_CreateGetBool( p_playlist, "auto-preparse" ) ;
104 p_playlist->p_root_category = playlist_NodeCreate( p_playlist, NULL, NULL,
106 p_playlist->p_root_onelevel = playlist_NodeCreate( p_playlist, NULL, NULL,
107 0, p_playlist->p_root_category->p_input );
109 if( !p_playlist->p_root_category || !p_playlist->p_root_onelevel )
112 /* Create playlist and media library */
113 playlist_NodesPairCreate( p_playlist, _( "Playlist" ),
114 &p_playlist->p_local_category,
115 &p_playlist->p_local_onelevel, false );
117 p_playlist->p_local_category->i_flags |= PLAYLIST_RO_FLAG;
118 p_playlist->p_local_onelevel->i_flags |= PLAYLIST_RO_FLAG;
120 if( !p_playlist->p_local_category || !p_playlist->p_local_onelevel ||
121 !p_playlist->p_local_category->p_input ||
122 !p_playlist->p_local_onelevel->p_input )
125 if( config_GetInt( p_playlist, "media-library") )
127 playlist_NodesPairCreate( p_playlist, _( "Media Library" ),
128 &p_playlist->p_ml_category,
129 &p_playlist->p_ml_onelevel, false );
131 if(!p_playlist->p_ml_category || !p_playlist->p_ml_onelevel)
134 p_playlist->p_ml_category->i_flags |= PLAYLIST_RO_FLAG;
135 p_playlist->p_ml_onelevel->i_flags |= PLAYLIST_RO_FLAG;
139 p_playlist->p_ml_category = p_playlist->p_ml_onelevel = NULL;
143 p_playlist->status.p_item = NULL;
144 p_playlist->status.p_node = p_playlist->p_local_onelevel;
145 p_playlist->request.b_request = false;
146 p_playlist->status.i_status = PLAYLIST_STOPPED;
148 p_playlist->i_sort = SORT_ID;
149 p_playlist->i_order = ORDER_NORMAL;
152 b_save = p_playlist->b_auto_preparse;
153 p_playlist->b_auto_preparse = false;
154 playlist_MLLoad( p_playlist );
155 p_playlist->b_auto_preparse = true;
157 vlc_object_set_destructor( p_playlist, playlist_Destructor );
165 * Destroy a playlist structure.
166 * \param p_playlist the playlist object
170 static void playlist_Destructor( vlc_object_t * p_this )
172 playlist_t * p_playlist = (playlist_t *)p_this;
174 if( p_playlist->p_preparse )
175 vlc_object_release( p_playlist->p_preparse );
177 if( p_playlist->p_fetcher )
178 vlc_object_release( p_playlist->p_fetcher );
180 libvlc_priv (p_this->p_libvlc)->p_playlist = NULL; /* pl_Yield() will fail */
184 /* Destroy remaining objects */
185 static void ObjectGarbageCollector( playlist_t *p_playlist, bool b_force )
191 if( mdate() - p_playlist->gc_date < 1000000 )
193 p_playlist->b_cant_sleep = true;
196 else if( p_playlist->gc_date == 0 )
200 vlc_mutex_lock( &p_playlist->gc_lock );
201 p_playlist->b_cant_sleep = false;
202 vlc_mutex_unlock( &p_playlist->gc_lock );
208 * Main loop for the playlist
209 * \param p_playlist the playlist object
212 void playlist_MainLoop( playlist_t *p_playlist )
214 playlist_item_t *p_item = NULL;
215 bool b_playexit = var_GetBool( p_playlist, "play-and-exit" );
218 if( p_playlist->b_reset_currently_playing &&
219 mdate() - p_playlist->last_rebuild_date > 30000 ) // 30 ms
221 ResetCurrentlyPlaying( p_playlist, var_GetBool( p_playlist, "random" ),
222 p_playlist->status.p_item );
223 p_playlist->last_rebuild_date = mdate();
227 /* If there is an input, check that it doesn't need to die. */
228 if( p_playlist->p_input )
230 if( p_playlist->request.b_request && !p_playlist->p_input->b_die )
232 PL_DEBUG( "incoming request - stopping current input" );
233 input_StopThread( p_playlist->p_input );
236 /* This input is dead. Remove it ! */
237 if( p_playlist->p_input->b_dead )
240 input_thread_t *p_input;
241 sout_instance_t **pp_sout =
242 &libvlc_priv(p_playlist->p_libvlc)->p_sout;
244 PL_DEBUG( "dead input" );
246 p_input = p_playlist->p_input;
247 p_playlist->p_input = NULL;
248 assert( *pp_sout == NULL );
249 if( var_CreateGetBool( p_input, "sout-keep" ) )
250 *pp_sout = input_DetachSout( p_input );
252 /* Release the playlist lock, because we may get stuck
253 * in vlc_object_release() for some time. */
257 vlc_object_release( p_input );
261 p_playlist->gc_date = mdate();
262 p_playlist->b_cant_sleep = true;
264 if( p_playlist->status.p_item->i_flags
265 & PLAYLIST_REMOVE_FLAG )
267 PL_DEBUG( "%s was marked for deletion, deleting",
268 PLI_NAME( p_playlist->status.p_item ) );
269 playlist_ItemDelete( p_playlist->status.p_item );
270 if( p_playlist->request.p_item == p_playlist->status.p_item )
271 p_playlist->request.p_item = NULL;
272 p_playlist->status.p_item = NULL;
275 i_activity= var_GetInteger( p_playlist, "activity" );
276 var_SetInteger( p_playlist, "activity", i_activity -
277 DEFAULT_INPUT_ACTIVITY );
280 /* This input is dying, let it do */
281 else if( p_playlist->p_input->b_die )
283 PL_DEBUG( "dying input" );
285 msleep( INTF_IDLE_SLEEP );
289 /* This input has finished, ask it to die ! */
290 else if( p_playlist->p_input->b_error
291 || p_playlist->p_input->b_eof )
293 PL_DEBUG( "finished input" );
294 input_StopThread( p_playlist->p_input );
295 /* No need to wait here, we'll wait in the p_input->b_die case */
298 else if( p_playlist->p_input->i_state != INIT_S )
301 ObjectGarbageCollector( p_playlist, false );
307 /* No input. Several cases
308 * - No request, running status -> start new item
309 * - No request, stopped status -> collect garbage
310 * - Request, running requested -> start new item
311 * - Request, stopped requested -> collect garbage
313 int i_status = p_playlist->request.b_request ?
314 p_playlist->request.i_status : p_playlist->status.i_status;
315 if( i_status != PLAYLIST_STOPPED )
317 msg_Dbg( p_playlist, "starting new item" );
318 p_item = playlist_NextItem( p_playlist );
322 msg_Dbg( p_playlist, "nothing to play" );
323 p_playlist->status.i_status = PLAYLIST_STOPPED;
326 if( b_playexit == true )
328 msg_Info( p_playlist, "end of playlist, exiting" );
329 vlc_object_kill( p_playlist->p_libvlc );
331 ObjectGarbageCollector( p_playlist, true );
334 playlist_PlayItem( p_playlist, p_item );
338 const bool b_gc_forced = p_playlist->status.i_status != PLAYLIST_STOPPED;
340 p_playlist->status.i_status = PLAYLIST_STOPPED;
341 if( p_playlist->status.p_item &&
342 p_playlist->status.p_item->i_flags & PLAYLIST_REMOVE_FLAG )
344 PL_DEBUG( "deleting item marked for deletion" );
345 playlist_ItemDelete( p_playlist->status.p_item );
346 p_playlist->status.p_item = NULL;
349 /* Collect garbage */
351 ObjectGarbageCollector( p_playlist, b_gc_forced );
361 * The playlist is dying so do the last loop
362 * \param p_playlist the playlist object
365 void playlist_LastLoop( playlist_t *p_playlist )
369 /* If there is an input, kill it */
373 if( p_playlist->p_input == NULL )
379 if( p_playlist->p_input->b_dead )
381 input_thread_t *p_input;
383 /* Unlink current input */
384 p_input = p_playlist->p_input;
385 p_playlist->p_input = NULL;
388 /* sout-keep: no need to anything here.
389 * The last input will destroy its sout, if any, by itself */
392 vlc_object_release( p_input );
395 else if( p_playlist->p_input->b_die )
397 /* This input is dying, leave it alone */
400 else if( p_playlist->p_input->b_error || p_playlist->p_input->b_eof )
402 input_StopThread( p_playlist->p_input );
408 p_playlist->p_input->b_eof = 1;
412 msleep( INTF_IDLE_SLEEP );
416 /* close the remaining sout-keep (if there was no input atm) */
417 sout_instance_t *p_sout = libvlc_priv (p_playlist->p_libvlc)->p_sout;
419 sout_DeleteInstance( p_sout );
422 while( p_playlist->i_sds )
424 playlist_ServicesDiscoveryRemove( p_playlist,
425 p_playlist->pp_sds[0]->p_sd->psz_module );
428 playlist_MLDump( p_playlist );
431 FOREACH_ARRAY( playlist_item_t *p_del, p_playlist->all_items )
432 free( p_del->pp_children );
433 vlc_gc_decref( p_del->p_input );
436 ARRAY_RESET( p_playlist->all_items );
438 ARRAY_RESET( p_playlist->items );
439 ARRAY_RESET( p_playlist->current );
447 * Main loop for preparser queue
448 * \param p_obj items to preparse
451 void playlist_PreparseLoop( playlist_preparse_t *p_obj )
453 playlist_t *p_playlist = (playlist_t *)p_obj->p_parent;
454 input_item_t *p_current;
457 vlc_object_lock( p_obj );
459 while( vlc_object_alive( p_obj ) )
461 if( p_obj->i_waiting == 0 )
463 vlc_object_wait( p_obj );
467 p_current = p_obj->pp_waiting[0];
468 REMOVE_ELEM( p_obj->pp_waiting, p_obj->i_waiting, 0 );
469 vlc_object_unlock( p_obj );
474 if( p_current->i_type == ITEM_TYPE_FILE )
476 stats_TimerStart( p_playlist, "Preparse run",
477 STATS_TIMER_PREPARSE );
478 /* Do not preparse if it is already done (like by playing it) */
479 if( !input_item_IsPreparsed( p_current ) )
482 input_Preparse( p_playlist, p_current );
485 stats_TimerStop( p_playlist, STATS_TIMER_PREPARSE );
487 input_item_SetPreparsed( p_current, true );
488 var_SetInteger( p_playlist, "item-change", p_current->i_id );
491 /* If we haven't retrieved enough meta, add to secondary queue
492 * which will run the "meta fetchers".
493 * This only checks for meta, not for art
494 * \todo don't do this for things we won't get meta for, like vids
496 char *psz_arturl = input_item_GetArtURL( p_current );
497 char *psz_name = input_item_GetName( p_current );
498 if( p_playlist->p_fetcher->i_art_policy == ALBUM_ART_ALL &&
499 ( !psz_arturl || strncmp( psz_arturl, "file://", 7 ) ) )
501 PL_DEBUG("meta ok for %s, need to fetch art", psz_name );
502 vlc_object_lock( p_playlist->p_fetcher );
503 INSERT_ELEM( p_playlist->p_fetcher->pp_waiting,
504 p_playlist->p_fetcher->i_waiting,
505 p_playlist->p_fetcher->i_waiting, p_current);
506 vlc_object_signal_unlocked( p_playlist->p_fetcher );
507 vlc_object_unlock( p_playlist->p_fetcher );
511 PL_DEBUG( "no fetch required for %s (art currently %s)",
512 psz_name, psz_arturl );
513 vlc_gc_decref( p_current );
522 vlc_object_lock( p_obj );
523 i_activity = var_GetInteger( p_playlist, "activity" );
524 if( i_activity < 0 ) i_activity = 0;
525 vlc_object_unlock( p_obj );
526 /* Sleep at least 1ms */
527 msleep( (i_activity+1) * 1000 );
528 vlc_object_lock( p_obj );
530 vlc_object_unlock( p_obj );
536 * Main loop for secondary preparser queue
537 * \param p_obj items to preparse
540 void playlist_FetcherLoop( playlist_fetcher_t *p_obj )
542 playlist_t *p_playlist = (playlist_t *)p_obj->p_parent;
543 input_item_t *p_item;
546 vlc_mutex_lock( &p_obj->object_lock );
548 while( vlc_object_alive( p_obj ) )
550 if( p_obj->i_waiting == 0 )
552 vlc_object_wait( p_obj );
556 p_item = p_obj->pp_waiting[0];
557 REMOVE_ELEM( p_obj->pp_waiting, p_obj->i_waiting, 0 );
558 vlc_mutex_unlock( &p_obj->object_lock );
563 /* Check if it is not yet preparsed and if so wait for it (at most 0.5s)
564 * (This can happen if we fetch art on play)
565 * FIXME this doesn't work if we need to fetch meta before art ... */
566 for( i_ret = 0; i_ret < 10 && !input_item_IsPreparsed( p_item ); i_ret++ )
570 b_break = ( !p_playlist->p_input || input_GetItem(p_playlist->p_input) != p_item ||
571 p_playlist->p_input->b_die || p_playlist->p_input->b_eof || p_playlist->p_input->b_error );
578 i_ret = input_ArtFind( p_playlist, p_item );
581 PL_DEBUG( "downloading art for %s", p_item->psz_name );
582 if( input_DownloadAndCacheArt( p_playlist, p_item ) )
583 input_item_SetArtNotFound( p_item, true );
585 input_item_SetArtFetched( p_item, true );
586 var_SetInteger( p_playlist, "item-change",
590 else if( i_ret == 0 ) /* Was in cache */
592 PL_DEBUG( "found art for %s in cache", p_item->psz_name );
593 input_item_SetArtFetched( p_item, true );
594 var_SetInteger( p_playlist, "item-change", p_item->i_id );
598 PL_DEBUG( "art not found for %s", p_item->psz_name );
599 input_item_SetArtNotFound( p_item, true );
601 vlc_gc_decref( p_item );
603 vlc_object_lock( p_obj );
604 i_activity = var_GetInteger( p_playlist, "activity" );
605 if( i_activity < 0 ) i_activity = 0;
606 vlc_object_unlock( p_obj );
607 /* Sleep at least 1ms */
608 msleep( (i_activity+1) * 1000 );
609 vlc_mutex_lock( &p_obj->object_lock );
611 vlc_mutex_unlock( &p_obj->object_lock );
614 static void VariablesInit( playlist_t *p_playlist )
617 /* These variables control updates */
618 var_Create( p_playlist, "intf-change", VLC_VAR_BOOL );
620 var_Set( p_playlist, "intf-change", val );
622 var_Create( p_playlist, "item-change", VLC_VAR_INTEGER );
624 var_Set( p_playlist, "item-change", val );
626 var_Create( p_playlist, "item-deleted", VLC_VAR_INTEGER );
628 var_Set( p_playlist, "item-deleted", val );
630 var_Create( p_playlist, "item-append", VLC_VAR_ADDRESS );
632 var_Create( p_playlist, "playlist-current", VLC_VAR_INTEGER );
634 var_Set( p_playlist, "playlist-current", val );
636 var_Create( p_playlist, "intf-popupmenu", VLC_VAR_BOOL );
638 var_Create( p_playlist, "activity", VLC_VAR_INTEGER );
639 var_SetInteger( p_playlist, "activity", 0 );
641 /* Variables to control playback */
642 var_CreateGetBool( p_playlist, "play-and-stop" );
643 var_CreateGetBool( p_playlist, "play-and-exit" );
644 var_CreateGetBool( p_playlist, "random" );
645 var_CreateGetBool( p_playlist, "repeat" );
646 var_CreateGetBool( p_playlist, "loop" );
648 var_AddCallback( p_playlist, "random", RandomCallback, NULL );