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