]> git.sesse.net Git - vlc/blob - src/control/media_list_player.c
media_list_player: Fix.
[vlc] / src / control / media_list_player.c
1 /*****************************************************************************
2  * media_list_player.c: libvlc new API media_list player functions
3  *****************************************************************************
4  * Copyright (C) 2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Pierre d'Herbemont <pdherbemont # videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 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 General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23 #include "libvlc_internal.h"
24 #include <vlc/libvlc.h>
25 #include "media_list_path.h"
26
27 /*
28  * Private functions
29  */
30
31 /**************************************************************************
32  *       get_next_index (private)
33  *
34  * Simple next item fetcher.
35  **************************************************************************/
36 static libvlc_media_list_path_t
37 get_next_path( libvlc_media_list_player_t * p_mlp )
38 {
39     /* We are entered with libvlc_media_list_lock( p_mlp->p_list ) */
40     libvlc_media_list_path_t ret;
41     libvlc_media_list_t * p_parent_of_playing_item;
42     libvlc_media_list_t * p_sublist_of_playing_item;
43
44     if ( !p_mlp->current_playing_item_path )
45     {
46         if( !libvlc_media_list_count( p_mlp, NULL ) )
47             return NULL;
48         return libvlc_media_list_path_with_root_index(0);
49     }
50     
51     p_sublist_of_playing_item = libvlc_media_list_sublist_at_path(
52                             p_mlp->p_mlist,
53                             p_mlp->current_playing_item_path );
54  
55     /* If item just gained a sublist just play it */
56     if( p_sublist_of_playing_item )
57     {
58         libvlc_media_list_release( p_sublist_of_playing_item );
59         return libvlc_media_list_path_copy_by_appending( p_mlp->current_playing_item_path, 0 );
60     }
61
62     /* Try to catch next element */
63     p_parent_of_playing_item = libvlc_media_list_parentlist_at_path(
64                             p_mlp->p_mlist,
65                             p_mlp->current_playing_item_path );
66
67     int deepness = libvlc_media_list_path_deepness( p_mlp->current_playing_item_path );
68     if( deepness < 1 || !p_parent_of_playing_item )
69         return NULL;
70
71     ret = libvlc_media_list_path_copy( p_mlp->current_playing_item_path );
72
73     while( ret[deepness-1] >= libvlc_media_list_count( p_parent_of_playing_item, NULL ) )
74     {
75         deepness--;
76         if( deepness <= 0 )
77         {
78             free( ret );
79             libvlc_media_list_release( p_parent_of_playing_item );
80             return NULL;
81         }
82         ret[deepness] = -1;
83         ret[deepness-1]++;
84         p_parent_of_playing_item  = libvlc_media_list_parentlist_at_path(
85                                         p_mlp->p_mlist,
86                                         ret );
87     }
88     libvlc_media_list_release( p_parent_of_playing_item );
89     return ret;
90 }
91
92 /**************************************************************************
93  *       media_player_reached_end (private) (Event Callback)
94  **************************************************************************/
95 static void
96 media_player_reached_end( const libvlc_event_t * p_event,
97                             void * p_user_data )
98 {
99     libvlc_media_list_player_t * p_mlp = p_user_data;
100     libvlc_media_player_t * p_mi = p_event->p_obj;
101     libvlc_media_t *p_md, * p_current_md;
102
103     p_md = libvlc_media_player_get_media( p_mi, NULL );
104     /* XXX: need if p_mlp->p_current_playing_index is beyond */
105     p_current_md = libvlc_media_list_item_at_path(
106                         p_mlp->p_mlist,
107                         p_mlp->current_playing_item_path );
108     if( p_md != p_current_md )
109     {
110         msg_Warn( p_mlp->p_libvlc_instance->p_libvlc_int,
111                   "We are not sync-ed with the media instance" );
112         libvlc_media_release( p_md );
113         libvlc_media_release( p_current_md );
114         return;
115     }
116     libvlc_media_release( p_md );
117     libvlc_media_release( p_current_md );
118     libvlc_media_list_player_next( p_mlp, NULL );
119 }
120
121 /**************************************************************************
122  *       playlist_item_deleted (private) (Event Callback)
123  **************************************************************************/
124 static void
125 mlist_item_deleted( const libvlc_event_t * p_event, void * p_user_data )
126 {
127     libvlc_media_t * p_current_md;
128     libvlc_media_list_player_t * p_mlp = p_user_data;
129     libvlc_media_list_t * p_emitting_mlist = p_event->p_obj;
130     /* XXX: need if p_mlp->p_current_playing_index is beyond */
131     p_current_md = libvlc_media_list_item_at_path(
132                         p_mlp->p_mlist,
133                         p_mlp->current_playing_item_path );
134
135     if( p_event->u.media_list_item_deleted.item == p_current_md &&
136         p_emitting_mlist == p_mlp->p_mlist )
137     {
138         /* We are playing this item, we choose to stop */
139         libvlc_media_list_player_stop( p_mlp, NULL );
140     }
141 }
142
143 /**************************************************************************
144  *       install_playlist_observer (private)
145  **************************************************************************/
146 static void
147 install_playlist_observer( libvlc_media_list_player_t * p_mlp )
148 {
149     libvlc_event_attach( libvlc_media_list_event_manager( p_mlp->p_mlist, NULL ),
150             libvlc_MediaListItemDeleted, mlist_item_deleted, p_mlp, NULL );
151 }
152
153 /**************************************************************************
154  *       uninstall_playlist_observer (private)
155  **************************************************************************/
156 static void
157 uninstall_playlist_observer( libvlc_media_list_player_t * p_mlp )
158 {
159     if ( !p_mlp->p_mlist )
160     {
161         return;
162     }
163
164     libvlc_event_detach( libvlc_media_list_event_manager( p_mlp->p_mlist, NULL ),
165             libvlc_MediaListItemDeleted, mlist_item_deleted, p_mlp, NULL );
166 }
167
168 /**************************************************************************
169  *       install_media_player_observer (private)
170  **************************************************************************/
171 static void
172 install_media_player_observer( libvlc_media_list_player_t * p_mlp )
173 {
174     libvlc_event_attach( libvlc_media_player_event_manager( p_mlp->p_mi, NULL ),
175                          libvlc_MediaPlayerEndReached,
176                           media_player_reached_end, p_mlp, NULL );
177 }
178
179
180 /**************************************************************************
181  *       uninstall_media_player_observer (private)
182  **************************************************************************/
183 static void
184 uninstall_media_player_observer( libvlc_media_list_player_t * p_mlp )
185 {
186     if ( !p_mlp->p_mi )
187     {
188         return;
189     }
190
191     libvlc_event_detach( libvlc_media_player_event_manager( p_mlp->p_mi, NULL ),
192                          libvlc_MediaPlayerEndReached,
193                          media_player_reached_end, p_mlp, NULL );
194 }
195
196 /**************************************************************************
197  *       set_current_playing_item (private)
198  *
199  * Playlist lock should be held
200  **************************************************************************/
201 static void
202 set_current_playing_item( libvlc_media_list_player_t * p_mlp,
203                           libvlc_media_list_path_t path,
204                           libvlc_exception_t * p_e )
205 {
206     VLC_UNUSED(p_e);
207
208     libvlc_media_t * p_md;
209
210     p_md = libvlc_media_list_item_at_path( p_mlp->p_mlist, path );
211     vlc_mutex_lock( &p_mlp->object_lock );
212
213     if( p_mlp->current_playing_item_path != path )
214     {
215         free( p_mlp->current_playing_item_path );
216         p_mlp->current_playing_item_path = path;
217     }
218
219     if( !p_md )
220     {
221         vlc_mutex_unlock( &p_mlp->object_lock );
222         return;
223     }
224
225     /* We are not interested in getting media stop event now */
226     uninstall_media_player_observer( p_mlp );
227
228     if ( !p_mlp->p_mi )
229     {
230         p_mlp->p_mi = libvlc_media_player_new_from_media(p_md, p_e);
231     }
232     
233     if( p_md->p_subitems && libvlc_media_list_count( p_md->p_subitems, NULL ) > 0 )
234     {
235         libvlc_media_t * p_submd;
236         p_submd = libvlc_media_list_item_at_index( p_md->p_subitems, 0, NULL );
237         libvlc_media_player_set_media( p_mlp->p_mi, p_submd, NULL );
238         libvlc_media_release( p_submd );
239     }
240     else
241         libvlc_media_player_set_media( p_mlp->p_mi, p_md, NULL );
242 //    wait_playing_state(); /* If we want to be synchronous */
243     install_media_player_observer( p_mlp );
244
245     vlc_mutex_unlock( &p_mlp->object_lock );
246
247     libvlc_media_release( p_md ); /* for libvlc_media_list_item_at_index */
248 }
249
250 /*
251  * Public libvlc functions
252  */
253
254 /**************************************************************************
255  *         new (Public)
256  **************************************************************************/
257 libvlc_media_list_player_t *
258 libvlc_media_list_player_new( libvlc_instance_t * p_instance,
259                               libvlc_exception_t * p_e )
260 {
261     (void)p_e;
262     libvlc_media_list_player_t * p_mlp;
263     p_mlp = malloc(sizeof(libvlc_media_list_player_t));
264     p_mlp->current_playing_item_path = NULL;
265     p_mlp->p_mi = NULL;
266     p_mlp->p_mlist = NULL;
267     vlc_mutex_init( &p_mlp->object_lock );
268     p_mlp->p_event_manager = libvlc_event_manager_new( p_mlp,
269                                                        p_instance,
270                                                        p_e );
271     libvlc_event_manager_register_event_type( p_mlp->p_event_manager,
272             libvlc_MediaListPlayerNextItemSet, p_e );
273
274     return p_mlp;
275 }
276
277 /**************************************************************************
278  *         release (Public)
279  **************************************************************************/
280 void libvlc_media_list_player_release( libvlc_media_list_player_t * p_mlp )
281 {
282     free(p_mlp);
283 }
284
285 /**************************************************************************
286  *        set_media_player (Public)
287  **************************************************************************/
288 void libvlc_media_list_player_set_media_player(
289                                      libvlc_media_list_player_t * p_mlp,
290                                      libvlc_media_player_t * p_mi,
291                                      libvlc_exception_t * p_e )
292 {
293     VLC_UNUSED(p_e);
294
295     vlc_mutex_lock( &p_mlp->object_lock );
296
297     if( p_mlp->p_mi )
298     {
299         uninstall_media_player_observer( p_mlp );
300         libvlc_media_player_release( p_mlp->p_mi );
301     }
302     libvlc_media_player_retain( p_mi );
303     p_mlp->p_mi = p_mi;
304
305     install_media_player_observer( p_mlp );
306
307     vlc_mutex_unlock( &p_mlp->object_lock );
308 }
309
310 /**************************************************************************
311  *       set_media_list (Public)
312  **************************************************************************/
313 void libvlc_media_list_player_set_media_list(
314                                      libvlc_media_list_player_t * p_mlp,
315                                      libvlc_media_list_t * p_mlist,
316                                      libvlc_exception_t * p_e )
317 {
318     vlc_mutex_lock( &p_mlp->object_lock );
319  
320     if( libvlc_media_list_player_is_playing( p_mlp, p_e ) )
321     {
322         libvlc_media_player_stop( p_mlp->p_mi, p_e );
323         /* Don't bother if there was an error. */
324         libvlc_exception_clear( p_e );
325     }
326
327     if( p_mlp->p_mlist )
328     {
329         uninstall_playlist_observer( p_mlp );
330         libvlc_media_list_release( p_mlp->p_mlist );
331     }
332     libvlc_media_list_retain( p_mlist );
333     p_mlp->p_mlist = p_mlist;
334  
335     install_playlist_observer( p_mlp );
336
337     vlc_mutex_unlock( &p_mlp->object_lock );
338 }
339
340 /**************************************************************************
341  *        Play (Public)
342  **************************************************************************/
343 void libvlc_media_list_player_play( libvlc_media_list_player_t * p_mlp,
344                                   libvlc_exception_t * p_e )
345 {
346     if( !p_mlp->current_playing_item_path )
347     {
348         libvlc_media_list_player_next( p_mlp, p_e );
349         return; /* Will set to play */
350     }
351
352     libvlc_media_player_play( p_mlp->p_mi, p_e );
353 }
354
355
356 /**************************************************************************
357  *        Pause (Public)
358  **************************************************************************/
359 void libvlc_media_list_player_pause( libvlc_media_list_player_t * p_mlp,
360                                      libvlc_exception_t * p_e )
361 {
362     if( !p_mlp->p_mi )
363         return;
364     libvlc_media_player_pause( p_mlp->p_mi, p_e );
365 }
366
367 /**************************************************************************
368  *        is_playing (Public)
369  **************************************************************************/
370 int
371 libvlc_media_list_player_is_playing( libvlc_media_list_player_t * p_mlp,
372                                      libvlc_exception_t * p_e )
373 {
374     libvlc_state_t state = libvlc_media_player_get_state( p_mlp->p_mi, p_e );
375     return (state == libvlc_Opening) || (state == libvlc_Buffering) ||
376            (state == libvlc_Forward) || (state == libvlc_Backward) ||
377            (state == libvlc_Playing);
378 }
379
380 /**************************************************************************
381  *        State (Public)
382  **************************************************************************/
383 libvlc_state_t
384 libvlc_media_list_player_get_state( libvlc_media_list_player_t * p_mlp,
385                                     libvlc_exception_t * p_e )
386 {
387     if( !p_mlp->p_mi )
388         return libvlc_Ended;
389     return libvlc_media_player_get_state( p_mlp->p_mi, p_e );
390 }
391
392 /**************************************************************************
393  *        Play item at index (Public)
394  **************************************************************************/
395 void libvlc_media_list_player_play_item_at_index(
396                         libvlc_media_list_player_t * p_mlp,
397                         int i_index,
398                         libvlc_exception_t * p_e )
399 {
400     set_current_playing_item( p_mlp, libvlc_media_list_path_with_root_index(i_index), p_e );
401
402     if( libvlc_exception_raised( p_e ) )
403         return;
404
405     /* Send the next item event */
406     libvlc_event_t event;
407     event.type = libvlc_MediaListPlayerNextItemSet;
408     libvlc_event_send( p_mlp->p_event_manager, &event );
409
410     libvlc_media_player_play( p_mlp->p_mi, p_e );
411 }
412
413 /**************************************************************************
414  *        Play item (Public)
415  **************************************************************************/
416 void libvlc_media_list_player_play_item(
417                         libvlc_media_list_player_t * p_mlp,
418                         libvlc_media_t * p_md,
419                         libvlc_exception_t * p_e )
420 {
421     libvlc_media_list_path_t path = libvlc_media_list_path_of_item( p_mlp->p_mlist, p_md );
422     if( !path )
423     {
424         libvlc_exception_raise( p_e, "No such item in media list" );
425         return;
426     }
427     set_current_playing_item( p_mlp, path, p_e );
428
429     if( libvlc_exception_raised( p_e ) )
430         return;
431
432     libvlc_media_player_play( p_mlp->p_mi, p_e );
433 }
434
435 /**************************************************************************
436  *       Stop (Public)
437  **************************************************************************/
438 void libvlc_media_list_player_stop( libvlc_media_list_player_t * p_mlp,
439                                     libvlc_exception_t * p_e )
440 {
441     if ( p_mlp->p_mi )
442     {
443         /* We are not interested in getting media stop event now */
444         uninstall_media_player_observer( p_mlp );
445         libvlc_media_player_stop( p_mlp->p_mi, p_e );
446         install_media_player_observer( p_mlp );
447     }
448
449     vlc_mutex_lock( &p_mlp->object_lock );
450     free( p_mlp->current_playing_item_path );
451     p_mlp->current_playing_item_path = NULL;
452     vlc_mutex_unlock( &p_mlp->object_lock );
453 }
454
455 /**************************************************************************
456  *       Next (Public)
457  **************************************************************************/
458 void libvlc_media_list_player_next( libvlc_media_list_player_t * p_mlp,
459                                     libvlc_exception_t * p_e )
460 {
461     libvlc_media_list_path_t path;
462
463     if (! p_mlp->p_mlist )
464     {
465         libvlc_exception_raise( p_e, "No more element to play" );
466         return;
467     }
468
469     libvlc_media_list_lock( p_mlp->p_mlist );
470
471     path = get_next_path( p_mlp );
472
473     if( !path )
474     {
475         libvlc_media_list_unlock( p_mlp->p_mlist );
476         libvlc_exception_raise( p_e, "No more element to play" );
477         libvlc_media_list_player_stop( p_mlp, p_e );
478         return;
479     }
480
481     set_current_playing_item( p_mlp, path, p_e );
482
483     libvlc_media_player_play( p_mlp->p_mi, p_e );
484
485     libvlc_media_list_unlock( p_mlp->p_mlist );
486
487     /* Send the next item event */
488     libvlc_event_t event;
489     event.type = libvlc_MediaListPlayerNextItemSet;
490     libvlc_event_send( p_mlp->p_event_manager, &event);
491 }