]> git.sesse.net Git - vlc/blob - src/playlist/engine.c
playlist: move SD loading/unloading to playlist code...
[vlc] / src / playlist / engine.c
1 /*****************************************************************************
2  * engine.c : Run the playlist and handle its control
3  *****************************************************************************
4  * Copyright (C) 1999-2008 VLC authors and VideoLAN
5  *
6  * Authors: Samuel Hocevar <sam@zoy.org>
7  *          ClĂ©ment Stenac <zorglub@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify it
10  * under the terms of the GNU Lesser General Public License as published by
11  * the Free Software Foundation; either version 2.1 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public License
20  * along with this program; if not, write to the Free Software Foundation,
21  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #endif
27
28 #include <stddef.h>
29 #include <assert.h>
30 #include <vlc_common.h>
31 #include <vlc_sout.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 */
36 #include <math.h> /* for fabs() */
37
38 /*****************************************************************************
39  * Local prototypes
40  *****************************************************************************/
41 static void VariablesInit( playlist_t *p_playlist );
42
43 static int RandomCallback( vlc_object_t *p_this, char const *psz_cmd,
44                            vlc_value_t oldval, vlc_value_t newval, void *a )
45 {
46     (void)psz_cmd; (void)oldval; (void)newval; (void)a;
47     playlist_t *p_playlist = (playlist_t*)p_this;
48     bool random = newval.b_bool;
49
50     PL_LOCK;
51
52     if( !random ) {
53         pl_priv(p_playlist)->b_reset_currently_playing = true;
54         vlc_cond_signal( &pl_priv(p_playlist)->signal );
55     } else {
56         /* Shuffle and sync the playlist on activation of random mode.
57          * This preserves the current playing item, so that the user
58          * can return to it if needed. (See #4472)
59          */
60         playlist_private_t *p_sys = pl_priv(p_playlist);
61         playlist_item_t *p_new = p_sys->status.p_item;
62         ResetCurrentlyPlaying( p_playlist, NULL );
63         if( p_new )
64             ResyncCurrentIndex( p_playlist, p_new );
65     }
66
67     PL_UNLOCK;
68     return VLC_SUCCESS;
69 }
70
71 /**
72  * When there are one or more pending corks, playback should be paused.
73  * This is used for audio policy.
74  * \warning Always add and remove a cork with var_IncInteger() and var_DecInteger().
75  * var_Get() and var_Set() are prone to race conditions.
76  */
77 static int CorksCallback( vlc_object_t *obj, char const *var,
78                           vlc_value_t old, vlc_value_t cur, void *dummy )
79 {
80     playlist_t *pl = (playlist_t *)obj;
81
82     msg_Dbg( obj, "corks count: %"PRId64" -> %"PRId64, old.i_int, cur.i_int );
83     if( !old.i_int == !cur.i_int )
84         return VLC_SUCCESS; /* nothing to do */
85
86     if( cur.i_int )
87     {
88         if( var_InheritBool( obj, "playlist-cork" ) )
89         {
90             msg_Dbg( obj, "corked" );
91             playlist_Pause( pl );
92         }
93         else
94             msg_Dbg( obj, "not corked" );
95     }
96     else
97         msg_Dbg( obj, "uncorked" );
98
99     (void) var; (void) dummy;
100     return VLC_SUCCESS;
101 }
102
103 static int RateCallback( vlc_object_t *p_this, char const *psz_cmd,
104                          vlc_value_t oldval, vlc_value_t newval, void *p )
105 {
106     (void)psz_cmd; (void)oldval;(void)p;
107     playlist_t *p_playlist = (playlist_t*)p_this;
108
109     PL_LOCK;
110
111     if( pl_priv(p_playlist)->p_input == NULL )
112     {
113         PL_UNLOCK;
114         return VLC_SUCCESS;
115     }
116
117     var_SetFloat( pl_priv( p_playlist )->p_input, "rate", newval.f_float );
118     PL_UNLOCK;
119     return VLC_SUCCESS;
120 }
121
122 static int RateOffsetCallback( vlc_object_t *obj, char const *psz_cmd,
123                                vlc_value_t oldval, vlc_value_t newval, void *p_data )
124 {
125     playlist_t *p_playlist = (playlist_t *)obj;
126     VLC_UNUSED(oldval); VLC_UNUSED(p_data); VLC_UNUSED(newval);
127
128     static const float pf_rate[] = {
129         1.0/64, 1.0/32, 1.0/16, 1.0/8, 1.0/4, 1.0/3, 1.0/2, 2.0/3,
130         1.0/1,
131         3.0/2, 2.0/1, 3.0/1, 4.0/1, 8.0/1, 16.0/1, 32.0/1, 64.0/1,
132     };
133     const size_t i_rate_count = sizeof(pf_rate)/sizeof(*pf_rate);
134
135     float f_rate;
136     struct input_thread_t *input;
137
138     PL_LOCK;
139     input = pl_priv( p_playlist )->p_input;
140     f_rate = var_GetFloat( input ? (vlc_object_t *)input : obj, "rate" );
141     PL_UNLOCK;
142
143     if( !strcmp( psz_cmd, "rate-faster" ) )
144     {
145         /* compensate for input rounding errors */
146         float r = f_rate * 1.1;
147         for( size_t i = 0; i < i_rate_count; i++ )
148             if( r < pf_rate[i] )
149             {
150                 f_rate = pf_rate[i];
151                 break;
152             }
153     }
154     else
155     {
156         /* compensate for input rounding errors */
157         float r = f_rate * .9;
158         for( size_t i = 1; i < i_rate_count; i++ )
159             if( r <= pf_rate[i] )
160             {
161                 f_rate = pf_rate[i - 1];
162                 break;
163             }
164     }
165
166     var_SetFloat( p_playlist, "rate", f_rate );
167     return VLC_SUCCESS;
168 }
169
170 static int VideoSplitterCallback( vlc_object_t *p_this, char const *psz_cmd,
171                                   vlc_value_t oldval, vlc_value_t newval, void *p_data )
172 {
173     playlist_t *p_playlist = (playlist_t*)p_this;
174     VLC_UNUSED(psz_cmd); VLC_UNUSED(oldval); VLC_UNUSED(p_data); VLC_UNUSED(newval);
175
176     PL_LOCK;
177
178     /* Force the input to restart the video ES to force a vout recreation */
179     input_thread_t *p_input = pl_priv( p_playlist )->p_input;
180     if( p_input )
181     {
182         const double f_position = var_GetFloat( p_input, "position" );
183         input_Control( p_input, INPUT_RESTART_ES, -VIDEO_ES );
184         var_SetFloat( p_input, "position", f_position );
185     }
186
187     PL_UNLOCK;
188     return VLC_SUCCESS;
189 }
190
191 /**
192  * Create playlist
193  *
194  * Create a playlist structure.
195  * \param p_parent the vlc object that is to be the parent of this playlist
196  * \return a pointer to the created playlist, or NULL on error
197  */
198 static playlist_t *playlist_Create( vlc_object_t *p_parent )
199 {
200     playlist_t *p_playlist;
201     playlist_private_t *p;
202
203     /* Allocate structure */
204     p = vlc_custom_create( p_parent, sizeof( *p ), "playlist" );
205     if( !p )
206         return NULL;
207
208     assert( offsetof( playlist_private_t, public_data ) == 0 );
209     p_playlist = &p->public_data;
210     TAB_INIT( pl_priv(p_playlist)->i_sds, pl_priv(p_playlist)->pp_sds );
211
212     VariablesInit( p_playlist );
213     vlc_mutex_init( &p->lock );
214     vlc_cond_init( &p->signal );
215     p->killed = false;
216
217     /* Initialise data structures */
218     pl_priv(p_playlist)->i_last_playlist_id = 0;
219     pl_priv(p_playlist)->p_input = NULL;
220
221     ARRAY_INIT( p_playlist->items );
222     ARRAY_INIT( p_playlist->all_items );
223     ARRAY_INIT( pl_priv(p_playlist)->items_to_delete );
224     ARRAY_INIT( p_playlist->current );
225
226     p_playlist->i_current_index = 0;
227     pl_priv(p_playlist)->b_reset_currently_playing = true;
228
229     pl_priv(p_playlist)->b_tree = var_InheritBool( p_parent, "playlist-tree" );
230
231     pl_priv(p_playlist)->b_doing_ml = false;
232
233     pl_priv(p_playlist)->b_auto_preparse =
234         var_InheritBool( p_parent, "auto-preparse" );
235
236     /* Fetcher */
237     p->p_fetcher = playlist_fetcher_New( VLC_OBJECT(p_playlist) );
238     if( unlikely(p->p_fetcher == NULL) )
239         msg_Err( p_playlist, "cannot create fetcher" );
240    /* Preparser */
241    p->p_preparser = playlist_preparser_New( VLC_OBJECT(p_playlist),
242                                             p->p_fetcher );
243    if( unlikely(p->p_preparser == NULL) )
244        msg_Err( p_playlist, "cannot create preparser" );
245
246     /* Create the root node */
247     PL_LOCK;
248     p_playlist->p_root = playlist_NodeCreate( p_playlist, NULL, NULL,
249                                     PLAYLIST_END, 0, NULL );
250     PL_UNLOCK;
251     if( !p_playlist->p_root ) return NULL;
252
253     /* Create currently playing items node */
254     PL_LOCK;
255     p_playlist->p_playing = playlist_NodeCreate(
256         p_playlist, _( "Playlist" ), p_playlist->p_root,
257         PLAYLIST_END, PLAYLIST_RO_FLAG, NULL );
258
259     PL_UNLOCK;
260
261     if( !p_playlist->p_playing ) return NULL;
262
263     /* Create media library node */
264     const bool b_ml = var_InheritBool( p_parent, "media-library");
265     if( b_ml )
266     {
267         PL_LOCK;
268         p_playlist->p_media_library = playlist_NodeCreate(
269             p_playlist, _( "Media Library" ), p_playlist->p_root,
270             PLAYLIST_END, PLAYLIST_RO_FLAG, NULL );
271         PL_UNLOCK;
272     }
273     else
274     {
275         p_playlist->p_media_library = NULL;
276     }
277
278     p_playlist->p_root_category = p_playlist->p_root;
279     p_playlist->p_root_onelevel = p_playlist->p_root;
280     p_playlist->p_local_category = p_playlist->p_playing;
281     p_playlist->p_local_onelevel = p_playlist->p_playing;
282     p_playlist->p_ml_category = p_playlist->p_media_library;
283     p_playlist->p_ml_onelevel = p_playlist->p_media_library;;
284
285     /* Initial status */
286     pl_priv(p_playlist)->status.p_item = NULL;
287     pl_priv(p_playlist)->status.p_node = p_playlist->p_playing;
288     pl_priv(p_playlist)->request.b_request = false;
289     pl_priv(p_playlist)->status.i_status = PLAYLIST_STOPPED;
290
291     if(b_ml)
292     {
293         const bool b_auto_preparse = pl_priv(p_playlist)->b_auto_preparse;
294         pl_priv(p_playlist)->b_auto_preparse = false;
295         playlist_MLLoad( p_playlist );
296         pl_priv(p_playlist)->b_auto_preparse = b_auto_preparse;
297     }
298
299     /* Input resources */
300     p->p_input_resource = input_resource_New( VLC_OBJECT( p_playlist ) );
301     if( unlikely(p->p_input_resource == NULL) )
302         abort();
303
304     /* Thread */
305     playlist_Activate (p_playlist);
306
307     /* Add service discovery modules */
308     char *mods = var_InheritString( p_playlist, "services-discovery" );
309     if( mods != NULL )
310     {
311         char *p = mods, *m;
312         while( (m = strsep( &p, " :," )) != NULL )
313             playlist_ServicesDiscoveryAdd( p_playlist, m );
314         free( mods );
315     }
316
317     return p_playlist;
318 }
319
320 /**
321  * Destroy playlist.
322  * This is not thread-safe. Any reference to the playlist is assumed gone.
323  * (In particular, all interface and services threads must have been joined).
324  *
325  * \param p_playlist the playlist object
326  */
327 void playlist_Destroy( playlist_t *p_playlist )
328 {
329     playlist_private_t *p_sys = pl_priv(p_playlist);
330
331     /* Remove all services discovery */
332     playlist_ServicesDiscoveryKillAll( p_playlist );
333
334     msg_Dbg( p_playlist, "destroying" );
335
336     playlist_Deactivate( p_playlist );
337     if( p_sys->p_preparser )
338         playlist_preparser_Delete( p_sys->p_preparser );
339     if( p_sys->p_fetcher )
340         playlist_fetcher_Delete( p_sys->p_fetcher );
341
342     /* Release input resources */
343     assert( p_sys->p_input == NULL );
344     input_resource_Release( p_sys->p_input_resource );
345
346     if( p_playlist->p_media_library != NULL )
347         playlist_MLDump( p_playlist );
348
349     PL_LOCK;
350     /* Release the current node */
351     set_current_status_node( p_playlist, NULL );
352     /* Release the current item */
353     set_current_status_item( p_playlist, NULL );
354     PL_UNLOCK;
355
356     vlc_cond_destroy( &p_sys->signal );
357     vlc_mutex_destroy( &p_sys->lock );
358
359     /* Remove all remaining items */
360     FOREACH_ARRAY( playlist_item_t *p_del, p_playlist->all_items )
361         free( p_del->pp_children );
362         vlc_gc_decref( p_del->p_input );
363         free( p_del );
364     FOREACH_END();
365     ARRAY_RESET( p_playlist->all_items );
366     FOREACH_ARRAY( playlist_item_t *p_del, p_sys->items_to_delete )
367         free( p_del->pp_children );
368         vlc_gc_decref( p_del->p_input );
369         free( p_del );
370     FOREACH_END();
371     ARRAY_RESET( p_sys->items_to_delete );
372
373     ARRAY_RESET( p_playlist->items );
374     ARRAY_RESET( p_playlist->current );
375
376     vlc_object_release( p_playlist );
377 }
378
379 #undef pl_Get
380 playlist_t *pl_Get (vlc_object_t *obj)
381 {
382     static vlc_mutex_t lock = VLC_STATIC_MUTEX;
383     libvlc_int_t *p_libvlc = obj->p_libvlc;
384     playlist_t *pl;
385
386     vlc_mutex_lock (&lock);
387     pl = libvlc_priv (p_libvlc)->p_playlist;
388     if (unlikely(pl == NULL))
389     {
390         pl = playlist_Create (VLC_OBJECT(p_libvlc));
391         if (unlikely(pl == NULL))
392             abort();
393         libvlc_priv (p_libvlc)->p_playlist = pl;
394     }
395     vlc_mutex_unlock (&lock);
396     return pl;
397 }
398
399 /** Get current playing input.
400  */
401 input_thread_t * playlist_CurrentInput( playlist_t * p_playlist )
402 {
403     input_thread_t * p_input;
404     PL_LOCK;
405     p_input = pl_priv(p_playlist)->p_input;
406     if( p_input ) vlc_object_hold( p_input );
407     PL_UNLOCK;
408     return p_input;
409 }
410
411 /**
412  * @}
413  */
414
415 /** Accessor for status item and status nodes.
416  */
417 playlist_item_t * get_current_status_item( playlist_t * p_playlist )
418 {
419     PL_ASSERT_LOCKED;
420
421     return pl_priv(p_playlist)->status.p_item;
422 }
423
424 playlist_item_t * get_current_status_node( playlist_t * p_playlist )
425 {
426     PL_ASSERT_LOCKED;
427
428     return pl_priv(p_playlist)->status.p_node;
429 }
430
431 void set_current_status_item( playlist_t * p_playlist,
432     playlist_item_t * p_item )
433 {
434     PL_ASSERT_LOCKED;
435
436     if( pl_priv(p_playlist)->status.p_item &&
437         pl_priv(p_playlist)->status.p_item->i_flags & PLAYLIST_REMOVE_FLAG &&
438         pl_priv(p_playlist)->status.p_item != p_item )
439     {
440         /* It's unsafe given current design to delete a playlist item :(
441         playlist_ItemDelete( pl_priv(p_playlist)->status.p_item ); */
442     }
443     pl_priv(p_playlist)->status.p_item = p_item;
444 }
445
446 void set_current_status_node( playlist_t * p_playlist,
447     playlist_item_t * p_node )
448 {
449     PL_ASSERT_LOCKED;
450
451     if( pl_priv(p_playlist)->status.p_node &&
452         pl_priv(p_playlist)->status.p_node->i_flags & PLAYLIST_REMOVE_FLAG &&
453         pl_priv(p_playlist)->status.p_node != p_node )
454     {
455         /* It's unsafe given current design to delete a playlist item :(
456         playlist_ItemDelete( pl_priv(p_playlist)->status.p_node ); */
457     }
458     pl_priv(p_playlist)->status.p_node = p_node;
459 }
460
461 static void VariablesInit( playlist_t *p_playlist )
462 {
463     /* These variables control updates */
464     var_Create( p_playlist, "intf-change", VLC_VAR_BOOL );
465     var_SetBool( p_playlist, "intf-change", true );
466
467     var_Create( p_playlist, "item-change", VLC_VAR_ADDRESS );
468     var_Create( p_playlist, "leaf-to-parent", VLC_VAR_INTEGER );
469
470     var_Create( p_playlist, "playlist-item-deleted", VLC_VAR_INTEGER );
471     var_SetInteger( p_playlist, "playlist-item-deleted", -1 );
472
473     var_Create( p_playlist, "playlist-item-append", VLC_VAR_ADDRESS );
474
475     var_Create( p_playlist, "input-current", VLC_VAR_ADDRESS );
476
477     var_Create( p_playlist, "activity", VLC_VAR_VOID );
478
479     /* Variables to control playback */
480     var_Create( p_playlist, "playlist-autostart", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
481     var_Create( p_playlist, "play-and-stop", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
482     var_Create( p_playlist, "play-and-exit", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
483     var_Create( p_playlist, "random", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
484     var_AddCallback( p_playlist, "random", RandomCallback, NULL );
485     var_Create( p_playlist, "repeat", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
486     var_Create( p_playlist, "loop", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
487     var_Create( p_playlist, "corks", VLC_VAR_INTEGER );
488     var_AddCallback( p_playlist, "corks", CorksCallback, NULL );
489
490     var_Create( p_playlist, "rate", VLC_VAR_FLOAT | VLC_VAR_DOINHERIT );
491     var_AddCallback( p_playlist, "rate", RateCallback, NULL );
492     var_Create( p_playlist, "rate-slower", VLC_VAR_VOID );
493     var_AddCallback( p_playlist, "rate-slower", RateOffsetCallback, NULL );
494     var_Create( p_playlist, "rate-faster", VLC_VAR_VOID );
495     var_AddCallback( p_playlist, "rate-faster", RateOffsetCallback, NULL );
496
497     var_Create( p_playlist, "video-splitter", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
498     var_AddCallback( p_playlist, "video-splitter", VideoSplitterCallback, NULL );
499
500     /* */
501     var_Create( p_playlist, "album-art", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
502
503     /* Variables to preserve video output parameters */
504     var_Create( p_playlist, "fullscreen", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
505     var_Create( p_playlist, "video-on-top", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
506
507     /* Audio output parameters */
508     var_Create( p_playlist, "mute", VLC_VAR_BOOL );
509     var_Create( p_playlist, "volume", VLC_VAR_FLOAT );
510     var_SetFloat( p_playlist, "volume", -1.f );
511 }
512
513 playlist_item_t * playlist_CurrentPlayingItem( playlist_t * p_playlist )
514 {
515     PL_ASSERT_LOCKED;
516
517     return pl_priv(p_playlist)->status.p_item;
518 }
519
520 int playlist_Status( playlist_t * p_playlist )
521 {
522     PL_ASSERT_LOCKED;
523
524     return pl_priv(p_playlist)->status.i_status;
525 }
526